1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| from setuptools import setup, find_packages
GFICLEE_VERSION = '2020.8.4.6'
setup( name='cfastproject', version=GFICLEE_VERSION, packages=find_packages(), include_package_data=True, entry_points={ "console_scripts": ['cfastproject = fastproject.main:main'] }, install_requires=[ "django", "fastapi", "gcp_mixed_logging", "asgi_request_id", "uvicorn", "google-cloud-secret-manager", "pandas", "peewee_async", "aiopg", "aiohttp" ], url='https://github.com/ChuXiaoYi/fastproject', license='GNU General Public License v3.0', author='Xiaoyi Chu', author_email='895706056@qq.com', description='More convenient to create fastapi project' )
|