Skip to content

Commit 7387cf0

Browse files
committed
fixing setup.py
1 parent 25e51da commit 7387cf0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ def read(fname):
1313
requirements = read('REQUIREMENTS').splitlines()
1414
tests_requirements = read('TEST-REQUIREMENTS').splitlines()
1515

16+
os.environ["PYTHONDONTWRITEBYTECODE"] = 1
17+
1618
setup(
1719
name="python-packager",
1820
version="0.0.5",
@@ -22,7 +24,7 @@ def read(fname):
2224
license='MIT',
2325
author='Flavio Curella',
2426
author_email='flavio.curella@gmail.com',
25-
packages=find_packages(exclude=['tests', 'pypackager.template.', 'pypackager.template.*']),
27+
packages=find_packages(exclude=['tests']),
2628
include_package_data=True,
2729
classifiers=[
2830
'Development Status :: 3 - Alpha',

0 commit comments

Comments
 (0)