-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (60 loc) · 1.68 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
import os
from setuptools import setup
requires = (
"attrs==21.2.0",
"boto3==1.24.55",
"botocore==1.27.55",
"certifi==2018.11.29",
"cffi==1.15.0",
"click==8.0.3",
"cryptography==35.0.0",
"dnspython==1.16.0",
"Flask==2.0.2",
"Flask-Cors==3.0.10",
"gunicorn==20.1.0",
"iniconfig==1.1.1",
"itsdangerous==2.0.1",
"Jinja2==3.0.2",
"jmespath==1.0.1",
"MarkupSafe==2.0.1",
"packaging==21.0",
"pluggy==1.0.0",
"py==1.10.0",
# "pycairo==1.20.1",
"pycparser==2.20",
"PyJWT==2.3.0",
"pymongo==4.0.1",
"pyparsing==3.0.0",
"python-dateutil==2.8.2",
"PyYAML==6.0",
"s3transfer==0.6.0",
"six==1.16.0",
"toml==0.10.2",
"urllib3==1.26.11",
"Werkzeug==2.0.2",
"wheel==0.37.1"
)
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "FynApp Backend",
# version = "0.1.1",
version=read('version.txt'),
author = "Carlos J. Ramirez MEDIABROS",
author_email = "cramirez@mediabros.com",
description = ("FynApp Backend"),
license = "BSD",
keywords = "health calorie deficit intermitent fasting fitness",
url = "http://packages.python.org/fynapp_api",
packages=['fynapp_api',],
# namespace_packages = ['fynapp_api'],
include_package_data=True,
zip_safe=False,
install_requires=requires,
# long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License"
],
)