-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
65 lines (61 loc) · 1.63 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
64
65
from pathlib import Path
from setuptools import setup, find_packages
DESCRIPTION = (
"Simple implementation of json web token based user authentication in flask."
)
APP_ROOT = Path(__file__).parent
README = (APP_ROOT / "README.md").read_text()
AUTHOR = "Ahmed Emad"
AUTHOR_EMAIL = "[email protected]"
PROJECT_URLS = {
"Documentation": "https://github.com/ahmedemad242/Flask-JWT-Authentication/blob/main/README.md",
"Bug Tracker": "https://github.com/ahmedemad242/Flask-JWT-Authentication/issues",
"Source Code": "https://github.com/ahmedemad242/Flask-JWT-Authentication",
}
INSTALL_REQUIRES = [
"Flask==2.1.0",
"Flask-Bcrypt",
"Flask-Cors",
"Flask-Migrate",
"flask-restx",
"Flask-SQLAlchemy",
"PyJWT",
"python-dateutil",
"python-dotenv",
"requests",
"urllib3",
"werkzeug==2.1.2",
"psycopg2",
]
EXTRAS_REQUIRE = {
"dev": [
"black",
"flake8",
"pre-commit",
"pydocstyle",
"pytest",
"pytest-clarity",
"pytest-dotenv",
"pytest-flask",
"tox",
]
}
setup(
name="Flask-JWT-Authentication",
description=DESCRIPTION,
long_description=README,
long_description_content_type="text/markdown",
version="0.1",
author=AUTHOR,
author_email=AUTHOR_EMAIL,
maintainer=AUTHOR,
maintainer_email=AUTHOR_EMAIL,
license="MIT",
url="https://github.com/ahmedemad242/Flask-JWT-Authentication",
project_urls=PROJECT_URLS,
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.8",
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
)