forked from bitly/bitly-api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 958 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
from setuptools import setup
version = '0.1.c'
setup(name='bitly_api',
version=version,
description="An API for bit.ly",
long_description=open("./README.txt", "r").read(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
keywords='bit.ly bitly j.mp jmp',
author='Jehiah Czebotar',
author_email='[email protected]',
url='http://github.com/bitly/bitly-api-python',
license='MIT License',
packages=['bitly_api'],
include_package_data=True,
zip_safe=True,
)