-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
57 lines (51 loc) · 1.31 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
from setuptools import find_packages, setup
PACKAGE = "apitoolbox"
VERSION = "0.11.2"
URL = "https://github.com/zuarbase/" + PACKAGE
DOWNLOAD_URL = URL + "/archive/v" + VERSION + ".tar.gz"
DESCRIPTION = "Full-stack async framework for Python."
with open("README.md", "r") as filp:
LONG_DESCRIPTION = filp.read()
setup(
name=PACKAGE,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Matthew Laue",
author_email="[email protected]",
url=URL,
download_url=DOWNLOAD_URL,
packages=find_packages(exclude=["tests"]),
include_package_data=True,
install_requires=[
"email-validator",
"fastapi >= 0.52.0, < 0.53.0",
"pydantic >= 1.4, < 1.5",
"passlib",
"python-dateutil",
"python-multipart",
"pyjwt",
"sqlalchemy",
"sqlalchemy-filters",
"tzlocal",
"itsdangerous",
"uvicorn",
],
extras_require={
"dev": [
"coverage",
"pylint",
"pytest",
"pytest-cov",
"pytest-env",
"pytest-mock",
"requests",
"flake8",
"flake8-quotes",
],
"prod": [
"gunicorn",
],
},
)