-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (49 loc) · 1.84 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
from setuptools import setup, find_packages
import os
baseDir = os.path.dirname(os.path.abspath(__file__))
VERSION_INFO = (0, 0, 2)
AUTHOR = "Aniket Sarkar"
with open(os.path.join(baseDir, "README.md"), "r") as f:
long_description = f.read()
setup(
name="Flask-Tortoise",
version=".".join([str(v) for v in list(VERSION_INFO)]),
url="https://github.com/marktennyson/Flask-Tortoise",
license="MIT",
author=AUTHOR,
author_email="[email protected]",
description="Adds asynchronous Tortoise ORM support for flask app.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=["flask", "flask-tortoise", "Tortoise"],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
platforms="any",
install_requires=[
"tortoise-orm>=0.17.7",
"asgiref>=3.4.1",
"aerich>=0.5.8",
"nc-console>=0.0.4",
],
extras_require={},
python_requires=">=3.6,<4",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)