-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (51 loc) · 1.46 KB
/
setup.py
File metadata and controls
54 lines (51 loc) · 1.46 KB
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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGELOG.rst')) as f:
CHANGELOG = f.read()
requires = [
'pyramid==1.5.1',
'pyramid_chameleon==0.3',
'pyramid_debugtoolbar==2.2',
'pyramid-tm==0.7',
'pyramid-mako==1.0.2',
'Pygments==1.6',
'waitress==0.8.9',
'SQLAlchemy==0.9.7',
'mysql-connector-python==1.2.3',
'transaction==1.4.3',
'zope.sqlalchemy==0.7.5',
'requests==2.3.0',
'arrow==0.4.4',
'passlib==1.6.2',
]
setup(name='awfulweb',
version='0.3',
description='Awful web api/ui',
long_description=README + '\n\n' + CHANGELOG,
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='Aaron Bandt',
author_email='aaron.bandt@citygridmedia.com',
url='',
license='Apache',
keywords='Awful devops',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
test_suite="awfulweb",
entry_points="""\
[paste.app_factory]
main = awfulweb:main
[console_scripts]
initialize_awful-web_db = awfulweb.scripts.initializedb:main
""",
)