forked from amehta/crunchbase
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
24 lines (21 loc) · 905 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
from distutils.core import setup
long_description = open('README.md').read()
setup(name="python-crunchbase",
version="1.0.2",
py_modules=["crunchbase"],
description="Libraries for interacting with the Crunchbase API",
author="Apurva Mehta <[email protected]>",
author_email = "[email protected]",
license="WTFPL",
url="http://github.com/amehta/crunchbase",
long_description=long_description,
platforms=["any"],
classifiers=["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=["simplejson >= 1.8"]
)