-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
63 lines (61 loc) · 1.47 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
63
"""
Installable scripts for app application.
"""
from pathlib import Path
from setuptools import setup, find_packages
DESCRIPTION = (
"Boilerplate Flask API with Flask-SQLAlchemy, RESTx, pytest, flake8 "
"tox configured"
)
APP_ROOT = Path(__file__).parent
README = (APP_ROOT / "README.md").read_text()
AUTHOR = "sachin som"
AUTHOR_EMAIL = "sachinsom507@gmail.com"
PROJECT_URLS = {"Source Code": "https://github.com/sachinsom93/flask-boilerplate"}
INSTALL_REQUIRES = [
"Flask",
"Flask-Bcrypt",
"Flask-Cors",
"Flask-Migrate",
"flask-restx",
"Flask-SQLAlchemy",
"PyJWT",
"python-dateutil",
"python-dotenv",
"requests",
"urllib3",
"werkzeug==0.16.1",
]
EXTRA_REQUIRE = {
"dev": [
"black",
"flake8",
"pre-commit",
"pydocstyle",
"pytest",
"pytest-black",
"pytest-clarity",
"pytest-dotenv",
"pytest-flake8",
"pytest-flask",
"tox",
]
}
setup(
name="app",
description=DESCRIPTION,
long_description=README,
long_description_content_type="text/markdown",
version="0.1",
author=AUTHOR,
author_email=AUTHOR_EMAIL,
maintainer_email=AUTHOR_EMAIL,
license="MIT",
url="https://github.com/sachinsom93/flask-boilerplate",
project_urls=PROJECT_URLS,
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.6",
install_requires=INSTALL_REQUIRES,
extras_require=EXTRA_REQUIRE,
)