-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
24 lines (22 loc) · 1022 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
from distutils.core import setup
from transparencydata import __version__
long_description = open('README.rst').read()
setup(name="python-transparencydata",
version=__version__,
py_modules=["transparencydata", "influenceexplorer"],
description="Library for interacting with the Sunlight Labs Transparency Data API",
author="Jeremy Carbaugh",
author_email = "[email protected]",
license='BSD',
url="http://github.com/sunlightlabs/python-transparencydata/",
long_description=long_description,
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",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)