Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
zip_ok = false

[bdist_wheel]
universal = 1
universal = 0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've hopefully fixed this in 5e94b0c, leaving just the packages issue below.

15 changes: 13 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
" dependency because pkg_resources is used to load plugins"
)

from setuptools import setup, find_packages
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
try:
with open(os.path.join(here, 'README.rst'), 'r') as f:
Expand Down Expand Up @@ -93,7 +93,18 @@
classifiers=CLASSIFIERS,
author="Chris McDonough",
author_email="chrism@plope.com",
packages=find_packages(),
packages=[
'supervisor',
'supervisor.medusa',
'supervisor.scripts',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I removed supervisor/scripts/ recently in 5732a41.

'supervisor.skel',
'supervisor.tests',
'supervisor.tests.fixtures',
'supervisor.tests.fixtures.example',
'supervisor.ui',
'supervisor.ui.images',
'supervisor.ui.stylesheets',
],
install_requires=[],
extras_require={
'test': ['pytest', 'pytest-cov']
Expand Down