forked from eyeseast/python-nytcongress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (22 loc) · 807 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
#!/usr/bin/env python
import nytcongress
from distutils.core import setup
README = open('README.md').read()
setup(
name = "python-nytcongress",
version = nytcongress.__version__,
description = "A Python client for the New York Times Congress API",
long_description = README,
author = "Chris Amico",
author_email = "eyeseast@gmail.com",
py_modules = ['nytcongress'],
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",
],
)