make project installable

This commit is contained in:
Lili (Tlapka) 2022-09-22 13:44:47 +02:00
parent 4c3d2cc734
commit a922e52f33
2 changed files with 17 additions and 0 deletions

4
tlapbot/MANIFEST.in Normal file
View File

@ -0,0 +1,4 @@
include tlapbot/schema.sql
graft tlapbot/static
graft tlapbot/templates
global-exclude *.pyc

13
tlapbot/setup.py Normal file
View File

@ -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'
],
)