-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
101 lines (98 loc) · 3.93 KB
/
setup.py
File metadata and controls
101 lines (98 loc) · 3.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="bigfastapi", # This is the name of the package
version="0.5.7", # The initial release version
author="BigFastAPI Team", # Full name of the author
author_email="support@rijen.tech",
description="Adding lots of functionality to FastAPI",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(include=['bigfastapi',
'bigfastapi.schemas',
'bigfastapi.models',
'bigfastapi.db',
'bigfastapi.utils',
'bigfastapi.data']),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
],
python_requires='>=3.8',
install_requires=['Jinja2', 'fastapi',
'wheel',
'uvicorn',
'aioredis',
'aiosmtplib',
'anyio',
'alembic',
'asgiref',
'async-timeout',
'blinker',
'certifi',
'cffi',
'charset-normalizer',
'click',
'dnspython',
'email-validator',
'fastapi',
'fastapi-mail',
'fastapi-utils',
'greenlet',
'h11',
'idna',
'Jinja2',
'MarkupSafe',
'packaging',
'passlib',
'python-jose',
'pdfkit',
'pycparser',
'pydantic',
'fastapi_pagination',
'PyJWT',
'pyparsing',
'authlib',
'qrcode',
'pdfkit',
'python-decouple',
'python-dotenv',
'cryptography',
'python-jose[cryptography]',
'python-multipart',
'PyYAML',
'requests',
'rfc3986',
'six',
'sniffio',
'sortedcontainers',
'SQLAlchemy',
'starlette',
'typing-extensions',
'uvicorn',
'watchgod',
'websockets',
'validators',
'pytest',
'fastapi-pagination',
'qrcode',
'itsdangerous'],
url='https://bigfastapi.com',
keywords='fastapi, bigfastapi, auth',
package_data={
'bigfastapi': ['templates/*.*', 'data/*.*', 'templates/email/*.html'],
# 'bigfastapi': ['data/*.*'],
# 'bigfastapi': ['templates/email/*.html'],
},
# include_package_data=True,
project_urls={
'Bug Reports': 'https://github.com/rijentech/bigfastapi',
'Funding': 'https://bigfastapi.com',
'Source': 'https://github.com/rijentech/bigfastapi',
},
)