We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 447be3d commit 45f411aCopy full SHA for 45f411a
MANIFEST.in
@@ -0,0 +1,5 @@
1
+include README.rst
2
+include LICENSE
3
+include CHANGES.rst
4
+recursive-include tests *
5
+recursive-exclude tests *.pyc
setup.py
@@ -4,7 +4,7 @@
Python tools for handling intervals (ranges of comparable objects).
6
"""
7
-from setuptools import setup, find_packages
+from setuptools import setup
8
import sys
9
10
@@ -30,8 +30,7 @@
30
'Python tools for handling intervals (ranges of comparable objects).'
31
),
32
long_description=__doc__,
33
- packages=find_packages('.'),
34
- py_modules=['intervals'],
+ packages=['intervals'],
35
zip_safe=False,
36
include_package_data=True,
37
platforms='any',
0 commit comments