-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 740 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 740 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
#dota2api/setup.py
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README')).read()
CHANGES = open(os.path.join(here, 'CHANGES')).read()
entry_points = """
[paste.app_factory]
main = dota2api:main
"""
requires = ['pyramid',
'pyramid_debugtoolbar',
'sqlalchemy',
'psycopg2',
'alembic',
'pyramid_beaker']
setup(name='dota2api',
version='0.1dev',
description='',
long_description=README + '\n\n' + CHANGES,
install_requires=requires,
url='http://localhost',
packages=['dota2api'],
test_suite='dota2api.tests',
entry_points=entry_points
)