-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
delete deprecated : bdist_wheel tests_require test_suite use find_namespace_pacakge to prevent warning about 'importable package' use of namespace because 'ui' is not a pkg as it does not contain __ini__.py
- Loading branch information
Showing
2 changed files
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
zip_ok = false | ||
|
||
[bdist_wheel] | ||
universal = 1 | ||
universal = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ | |
'pytest-cov', | ||
] | ||
|
||
from setuptools import setup, find_packages | ||
from setuptools import setup, find_namespace_packages | ||
here = os.path.abspath(os.path.dirname(__file__)) | ||
try: | ||
with open(os.path.join(here, 'README.rst'), 'r') as f: | ||
|
@@ -91,15 +91,18 @@ | |
classifiers=CLASSIFIERS, | ||
author="Chris McDonough", | ||
author_email="[email protected]", | ||
packages=find_packages(), | ||
packages=find_namespace_packages(exclude=["docs","supervisor.tests","supervisor.tests.*"]), | ||
package_dir={"": "."}, | ||
package_data={ | ||
"supervisor.ui": ["**/*"], | ||
"supervisor.skel": ["*"] | ||
}, | ||
install_requires=requires, | ||
extras_require={ | ||
'testing': testing_extras, | ||
}, | ||
tests_require=tests_require, | ||
include_package_data=True, | ||
zip_safe=False, | ||
test_suite="supervisor.tests", | ||
entry_points={ | ||
'console_scripts': [ | ||
'supervisord = supervisor.supervisord:main', | ||
|