-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 689 Bytes
/
setup.py
File metadata and controls
34 lines (31 loc) · 689 Bytes
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
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',
'sqlalchemy',
'waitress',
'zope.sqlalchemy',
'bcrypt',
'alembic',
'sqlalchemy_utils',
'passlib',
'webtest',
'pycodestyle',
'pytest'
]
setup(name='easy_webserver',
install_requires=requires,
entry_points="""\
[paste.app_factory]
main = easy_webserver:main
""",
)