setup.py 619 B

123456789101112131415161718192021222324
  1. from setuptools import setup
  2. setup(name='backend',
  3. version='0.1',
  4. description='',
  5. url='',
  6. author='',
  7. author_email='',
  8. license='',
  9. packages=['backend'],
  10. zip_safe=False,
  11. entry_points={
  12. 'console_scripts': [
  13. 'webserver = backend.app:start'
  14. ],
  15. },
  16. install_requires=[
  17. 'Flask==1.1.1',
  18. 'Flask-RESTful==0.3.8',
  19. 'Flask-SQLAlchemy==2.4.1',
  20. 'psycopg2-binary==2.8.4',
  21. 'SQLAlchemy==1.3.15',
  22. 'waitress==1.4.3',
  23. ])