-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
33 lines (31 loc) · 1.19 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
33
#!/usr/bin/env python
from setuptools import setup
from legistar import __version__
long_description = ''
setup(name='legistar',
version=__version__,
packages=['legistar'],
author='Forest Gregg',
author_email='[email protected]',
license='BSD',
url='http://github.com/opencivicdata/python-legistar-scraper/',
description='Mixin classes for legistar scrapers',
long_description=long_description,
platforms=['any'],
install_requires=['requests',
'lxml',
'pytz',
'icalendar',
'scrapelib',
'esprima'
],
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)