-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (36 loc) · 856 Bytes
/
setup.py
File metadata and controls
41 lines (36 loc) · 856 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
35
36
37
38
39
40
41
#MonkeyBall/setup.py
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
CHANGES = open(os.path.join(here, 'CHANGES')).read()
entry_points = """
[paste.app_factory]
main = monkeyball:main
"""
requires = [
'pyramid==1.3',
'pyramid_debugtoolbar',
'sqlalchemy',
'psycopg2',
'alembic',
'waitress',
'velruse==0.3b3',
'retools',
'APScheduler',
'redis'
]
tests_require = requires + [
'nose',
]
setup(name='monkeyball',
version='0.1dev',
description='',
long_description=README + '\n\n' + CHANGES,
install_requires=requires,
tests_require=tests_require,
url='http://localhost',
packages=['monkeyball'],
test_suite='monkeyball.tests',
entry_points=entry_points
)