File tree 1 file changed +13
-8
lines changed
1 file changed +13
-8
lines changed Original file line number Diff line number Diff line change 34
34
'pytest-cov' ,
35
35
]
36
36
37
- from setuptools import setup , find_namespace_packages
37
+ from setuptools import setup
38
38
here = os .path .abspath (os .path .dirname (__file__ ))
39
39
try :
40
40
with open (os .path .join (here , 'README.rst' ), 'r' ) as f :
91
91
classifiers = CLASSIFIERS ,
92
92
author = "Chris McDonough" ,
93
93
author_email = "chrism@plope.com" ,
94
- packages = find_namespace_packages (exclude = ["docs" ,"supervisor.tests" ,"supervisor.tests.*" ]),
95
- package_dir = {"" : "." },
96
- package_data = {
97
- "supervisor" : ["version.txt" ],
98
- "supervisor.ui" : ["**/*" ],
99
- "supervisor.skel" : ["*" ]
100
- },
94
+ packages = [
95
+ 'supervisor' ,
96
+ 'supervisor.medusa' ,
97
+ 'supervisor.scripts' ,
98
+ 'supervisor.skel' ,
99
+ 'supervisor.tests' ,
100
+ 'supervisor.tests.fixtures' ,
101
+ 'supervisor.tests.fixtures.example' ,
102
+ 'supervisor.ui' ,
103
+ 'supervisor.ui.images' ,
104
+ 'supervisor.ui.stylesheets' ,
105
+ ],
101
106
install_requires = requires ,
102
107
extras_require = {
103
108
'testing' : testing_extras ,
You can’t perform that action at this time.
0 commit comments