-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
62 lines (53 loc) · 1.78 KB
/
setup.py
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
import os
from setuptools import setup, find_packages
__version__ = "0.2.2"
requirements_filepath = os.path.join(os.path.dirname(__name__), "requirements.txt")
readme_filepath = os.path.join(os.path.dirname(__name__), "README.md")
with open(requirements_filepath) as fp:
install_requires = fp.read()
extra_packages = {
"tests": ["pytest"],
"docs": ["sphinx"],
"tortoise-orm": ["tortoise-orm>=0.19.2"],
"sqlalchemy": ["SQLAlchemy>=1.4.39,<2.0.0"],
}
all_packages = []
for value in extra_packages.values():
all_packages.extend(value)
EXTRAS_REQUIRE = {
"all": all_packages,
}
EXTRAS_REQUIRE.update(extra_packages)
def get_description():
"""
Read full description from 'README.md'
"""
with open('README.md', 'r', encoding='utf-8') as f:
return f.read()
setup(
name="FastAPI-JSONAPI",
version=__version__,
description="FastAPI extension to create REST web api according to JSON:API 1.0 specification "
"with FastAPI, Pydantic and data provider of your choice (SQLAlchemy, Tortoise ORM)",
long_description=get_description(),
long_description_content_type='text/markdown',
url="https://github.com/mts-ai/FastAPI-JSONAPI",
author="Team MTS AI",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Utilities",
],
keywords="fastapi jsonapi mts ai",
packages=find_packages(exclude=["tests"]),
zip_safe=False,
platforms="any",
install_requires=install_requires,
extras_require=EXTRAS_REQUIRE,
tests_require=["pytest"],
)