diff options
-rw-r--r-- | mitmproxy/MANIFEST.in | 2 | ||||
-rw-r--r-- | mitmproxy/setup.py | 2 | ||||
-rw-r--r-- | netlib/setup.py | 4 | ||||
-rw-r--r-- | pathod/MANIFEST.in | 2 | ||||
-rw-r--r-- | pathod/setup.py | 3 |
5 files changed, 7 insertions, 6 deletions
diff --git a/mitmproxy/MANIFEST.in b/mitmproxy/MANIFEST.in new file mode 100644 index 00000000..441fbde8 --- /dev/null +++ b/mitmproxy/MANIFEST.in @@ -0,0 +1,2 @@ +graft libmproxy +recursive-exclude * *.pyc *.pyo *.swo *.swp *.map
\ No newline at end of file diff --git a/mitmproxy/setup.py b/mitmproxy/setup.py index 23327553..13006752 100644 --- a/mitmproxy/setup.py +++ b/mitmproxy/setup.py @@ -41,7 +41,7 @@ setup( "Topic :: Internet :: Proxy Servers", "Topic :: Software Development :: Testing" ], - packages=find_packages(exclude=["test", "test.*"]), + packages=find_packages(), include_package_data=True, entry_points={ 'console_scripts': [ diff --git a/netlib/setup.py b/netlib/setup.py index bcaecad4..0c9a721d 100644 --- a/netlib/setup.py +++ b/netlib/setup.py @@ -40,9 +40,7 @@ setup( "Topic :: Software Development :: Testing", "Topic :: Software Development :: Testing :: Traffic Generation", ], - packages=find_packages(exclude=["test", "test.*"]), - include_package_data=True, - zip_safe=False, + packages=find_packages(), install_requires=[ "pyasn1>=0.1.9, <0.2", "pyOpenSSL>=0.15.1, <0.16", diff --git a/pathod/MANIFEST.in b/pathod/MANIFEST.in new file mode 100644 index 00000000..fb7b776c --- /dev/null +++ b/pathod/MANIFEST.in @@ -0,0 +1,2 @@ +graft libpathod +recursive-exclude * *.pyc *.pyo *.swo *.swp *.map
\ No newline at end of file diff --git a/pathod/setup.py b/pathod/setup.py index e4160d13..faec47f2 100644 --- a/pathod/setup.py +++ b/pathod/setup.py @@ -38,8 +38,7 @@ setup( "Topic :: Software Development :: Testing", "Topic :: Software Development :: Testing :: Traffic Generation", ], - - packages=find_packages(exclude=["test", "test.*"]), + packages=find_packages(), include_package_data=True, entry_points={ 'console_scripts': [ |