forked from opensecrets/python-crpapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 987 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
from distutils.core import setup
from crpapi import __version__,__license__,__doc__
license_text = open('LICENSE').read()
long_description = open('README.md').read()
setup(name="python-crpapi",
version=__version__,
py_modules=["crpapi"],
description="Libraries for interacting with the CRP API",
author="Ben Pilkerton",
author_email = "bpilkerton@gmail.org",
license=license_text,
url="http://www.opensecrets.org/action/api_doc.php",
long_description=long_description,
platforms=["any"],
classifiers=["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)