forked from joehand/census
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 835 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
from setuptools import setup, find_packages
import census
long_description = open('README.rst').read()
setup(
name="census",
version=census.__version__,
py_modules=['census'],
author="Jeremy Carbaugh",
author_email='[email protected]',
license="BSD",
url="http://github.com/sunlightlabs/census",
long_description=long_description,
packages=find_packages(),
description="A wrapper for the US Census Bureau's API",
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",
],
install_requires=['requests>=1.1.0', 'us>=0.7'],
)