forked from openstates/openstates-scrapers
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (24 loc) · 1001 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
#!/usr/bin/env python
from setuptools import setup
long_description = open('README.rst').read()
setup(name="fiftystates",
version='0.1',
namespace_packages=['fiftystates'],
packages=['fiftystates.scrape', 'fiftystates.backend',
'fiftystates.site'],
description="The Fifty State Project",
author="Michael Stephens",
author_email="mstephens@sunlightfoundation.com",
license="BSD",
url="http://github.com/sunlightlabs/openstates",
long_description=long_description,
platforms=["any"],
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)