forked from amehta/crunchbase
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·24 lines (22 loc) · 965 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
long_description = open('README.txt').read()
setup(name="python-crunchbase",
version="1.0.2",
packages=["crunchbase"],
description="Libraries for interacting with the Crunchbase 2.0 API",
author="Brian Anglin <[email protected]>",
author_email="[email protected]",
license="WTFPL",
url="https://github.com/anglinb/python-crunchbase",
long_description=long_description,
download_url = 'https://github.com/anglinb/python-crunchbase/tarball/1.0.2',
platforms=["any"],
classifiers=["Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development" +
" :: Libraries :: Python Modules",
],
keywords = ['crunchbase','2.0','api']
)