| 123456789101112131415161718192021222324 |
- from setuptools import setup
- setup(name='backend',
- version='0.1',
- description='',
- url='',
- author='',
- author_email='',
- license='',
- packages=['backend'],
- zip_safe=False,
- entry_points={
- 'console_scripts': [
- 'webserver = backend.app:start'
- ],
- },
- install_requires=[
- 'Flask==1.1.1',
- 'Flask-RESTful==0.3.8',
- 'Flask-SQLAlchemy==2.4.1',
- 'psycopg2-binary==2.8.4',
- 'SQLAlchemy==1.3.15',
- 'waitress==1.4.3',
- ])
|