-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
32 lines (30 loc) · 1.15 KB
/
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
from setuptools import setup
packages = ['dcmetrometrics',
'dcmetrometrics.common',
'dcmetrometrics.eles',
'dcmetrometrics.hotcars',
'dcmetrometrics.keys',
'dcmetrometrics.test',
'dcmetrometrics.third_party',
'dcmetrometrics.web']
setup(name='DC Metro Metrics',
version='1.1',
description='Collecting and sharing public data related to the DC WMATA Metrorail system.',
author='Lee Mendelowitz',
author_email='[email protected]',
url='https://github.com/LeeMendelowitz/DCMetroMetrics',
# Uncomment one or more lines below in the install_requires section
# for the specific client drivers/modules your application needs.
install_requires=[ 'greenlet',
'gevent',
'requests',
'python-dateutil==1.5',
'oauth2',
'pymongo',
'simplejson',
'httplib2',
'bottle',
'mongoengine'
],
packages = []
)