-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 971 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.3'
setup(name='bitly_api',
version=version,
description="An API for bit.ly",
long_description=open("./README.md", "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 :: Apache Software License",
],
keywords='bitly bit.ly',
author='shade',
author_email='[email protected]',
url='https://github.com/harkerbyte/bitly-api-python',
license='Apache Software License',
packages=['bitly_api'],
include_package_data=True,
zip_safe=True,
)