-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
37 lines (33 loc) · 890 Bytes
/
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
33
34
35
36
37
#!/usr/bin/env python
"""
california election 2012
====
Collection of libraries and tools to processs california election data.
"""
from setuptools import setup
import election_parser
setup(
name='election_parser',
version="%d.%d.%d" % election_parser.VERSION,
url="http://github.com/wnyc/election_california_2012",
long_description=__doc__,
packages = ["election_parser","election_parser.test"],
package_data = {'election_parser.test': ['data/*.zip']},
zip_safe=True,
license='GPLv2',
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
],
scripts = [
"scripts/fake_election_server",
"scripts/fetch_parse_and_upload_election_data",
],
install_requires = [
'paramiko',
'python-gflags',
'pycurl',
'scpclient',
'unittest2'
]
)