forked from gramps-project/gramps-web-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (32 loc) · 954 Bytes
/
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
"""The setup script."""
from setuptools import find_packages, setup
with open("README.md") as readme_file:
README = readme_file.read()
with open("gramps_webapi/_version.py") as version_file:
exec(version_file.read())
REQUIREMENTS = [
"Click>=7.0",
"Flask",
"Flask-Compress",
"Flask-Cors",
"Flask-JWT-Extended",
"Flask-Limiter",
"webargs",
"SQLAlchemy",
]
setup(
author="Gramps Development Team",
author_email="...",
url="https://github.com/gramps-project/web-api",
python_requires=">=3.5",
description="A RESTful web API for the Gramps genealogical database.",
license="GPL v2 or greater",
install_requires=REQUIREMENTS,
long_description=README,
long_description_content_type="text/markdown",
include_package_data=True,
name="gramps_webapi",
packages=find_packages(include=["gramps_webapi", "gramps_webapi.*"]),
version=__version__,
zip_safe=False,
)