forked from Subscribie/subscribie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (42 loc) · 1.11 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
import setuptools
setuptools.setup(
name="subscribie",
version="0.0.7",
author="Karma Computing",
author_email="[email protected]",
desciption="Recurring subscription management and billing",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
),
install_requires=[
"Flask>=1,<2",
"flask_cors",
"Flask-Reuploaded==0.3.2",
"flask_wtf",
"wtforms[email]",
"Flask-Mail>=0.9.1",
"requests",
"blinker",
"oauth2client",
"pyyaml",
"stripe",
"GitPython",
"pytest",
"tinycss",
"flask_sqlalchemy",
"flask_migrate",
"python-dotenv==0.13.0",
"click==7.1.2",
"pyjwt[crypto]",
"py-auth-header-parser==1.0.2",
"pydantic==1.6.2",
"honeycomb-beeline==2.14.0",
],
entry_points="""
[console_scripts]
""",
)