forked from eyeseast/propublica-congress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (27 loc) · 844 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.md') as f:
README = f.read()
VERSION = "0.1.1"
setup(
name = "python-nytcongress",
version = VERSION,
description = "A Python client for the New York Times Congress API",
long_description = README,
author = "Chris Amico",
author_email = "[email protected]",
py_modules = ['nytcongress'],
install_requires = ['httplib2'],
platforms= ['any'],
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)