diff --git a/tlapbot/MANIFEST.in b/tlapbot/MANIFEST.in new file mode 100644 index 0000000..72c4d1e --- /dev/null +++ b/tlapbot/MANIFEST.in @@ -0,0 +1,4 @@ +include tlapbot/schema.sql +graft tlapbot/static +graft tlapbot/templates +global-exclude *.pyc \ No newline at end of file diff --git a/tlapbot/setup.py b/tlapbot/setup.py new file mode 100644 index 0000000..cf96524 --- /dev/null +++ b/tlapbot/setup.py @@ -0,0 +1,13 @@ +from setuptools import find_packages, setup + +setup( + name='tlapbot', + version='0.5.0', + packages=find_packages(), + include_package_data=True, + install_requires=[ + 'flask', + 'requests', + 'apscheduler' + ], +) \ No newline at end of file