-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (42 loc) · 872 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
40
41
42
43
44
45
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.txt')) as f:
CHANGES = f.read()
requires = [
'pyramid',
'pyramid_chameleon',
'pyramid_tm',
'pyramid_debugtoolbar',
'pyramid_jinja2',
'pyramid-jwt',
'sqlalchemy',
'gunicorn',
'zope.sqlalchemy',
'alembic',
'sqlalchemy_utils',
'passlib',
'argon2_cffi',
'webtest',
'pycodestyle',
'pytest',
'pytest-cov',
'qrcode',
'requests',
'uuid',
'sentry-sdk',
'Pillow',
'stripe',
'mistune',
'pika'
]
setup(name='phoenixRest',
install_requires=requires,
packages=["phoenixRest"],
entry_points="""\
[paste.app_factory]
main = phoenixRest:main
""",
)