forked from bpilkerton/python-crpapi
-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
29 lines (26 loc) · 920 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
from distutils.core import setup
from crpapi import __version__
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="https://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",
],
install_requires=["simplejson >= 1.8"],
)