-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
32 lines (30 loc) · 1.04 KB
/
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
29
30
31
32
import codecs
from setuptools import setup
long_description = codecs.open('README.rst', "r").read()
setup(
name="gdshortener",
version="1.0.1",
author="Gian Luca Dalla Torre",
author_email="[email protected]",
description=("A module that provides access to .gd URL Shortener"),
license="LGPL",
keywords="url shortener gd",
url="https://github.com/torre76/gd_shortener",
download_url="https://github.com/torre76/gd_shortener/tarball/1.0.1",
py_modules = ['gdshortener'],
long_description=long_description,
package_data={
'': ['README.rst'],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3"
],
install_requires=[
"requests >= 2.21.0"
]
)