forked from torre76/gd_shortener
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.03 KB
/
Copy pathsetup.py
File metadata and controls
32 lines (30 loc) · 1.03 KB
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="0.0.4",
author="Gian Luca Dalla Torre",
author_email="gianluca@gestionaleauto.com",
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/0.0.4",
packages=['gdshortener'],
long_description=long_description,
package_data={
'': ['README.rst'],
},
classifiers=[
"Development Status :: 4 - Beta",
"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 :: 2 :: Only"
],
install_requires=[
"requests >= 2.21.0"
]
)