diff --git a/MANIFEST.in b/MANIFEST.in index da19d35..211c413 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ recursive-include ndscheduler/static * +recursive-exclude simple_scheduler * diff --git a/setup.py b/setup.py index a949787..18e0aea 100644 --- a/setup.py +++ b/setup.py @@ -70,7 +70,7 @@ def maybe_rm(path): download_url='http://pypi.python.org/pypi/ndscheduler#downloads', license='Apache License, Version 2', keywords='scheduler nextdoor cron python', - packages=find_packages(), + packages=find_packages(exclude=("simple_scheduler*",)), include_package_data=True, extras_require={'python_version<"3.3"': ['funcsigs']}, tests_require=[ @@ -85,6 +85,7 @@ def maybe_rm(path): 'future >= 0.15.2', 'tornado < 6', 'python-dateutil >= 2.2', + 'requests >= 2.22.0' ], classifiers=classifiers, cmdclass={'clean': CleanHook},