forked from openstates/billy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.01 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.01 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from billy import __version__
long_description = open('README.rst').read()
setup(name='billy',
version=__version__,
packages=find_packages(),
package_data={'billy': ['schemas/*.json'],
},
author="James Turk",
author_email="james@openstates.org",
license="BSD",
url="http://github.com/openstates/billy/",
description='scraping, storing, and sharing legislative information',
long_description=long_description,
platforms=['any'],
entry_points="""[console_scripts]
billy-update = billy.bin.update:main
billy-util = billy.bin.util:main
""",
install_requires=[
'Django<1.10',
'six',
#"django-pjax",
"boto",
"lxml>=2.2",
"name_tools>=0.1.2",
"nose",
"pymongo>=2.2,<3.0.0",
"scrapelib==1.1.0",
"unicodecsv!=0.9.3",
"validictory",
"pyelasticsearch",
]
)