We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25e51da commit 7387cf0Copy full SHA for 7387cf0
setup.py
@@ -13,6 +13,8 @@ def read(fname):
13
requirements = read('REQUIREMENTS').splitlines()
14
tests_requirements = read('TEST-REQUIREMENTS').splitlines()
15
16
+os.environ["PYTHONDONTWRITEBYTECODE"] = 1
17
+
18
setup(
19
name="python-packager",
20
version="0.0.5",
@@ -22,7 +24,7 @@ def read(fname):
22
24
license='MIT',
23
25
author='Flavio Curella',
26
author_email='flavio.curella@gmail.com',
- packages=find_packages(exclude=['tests', 'pypackager.template.', 'pypackager.template.*']),
27
+ packages=find_packages(exclude=['tests']),
28
include_package_data=True,
29
classifiers=[
30
'Development Status :: 3 - Alpha',
0 commit comments