forked from parthrbhatt/pyShortUrl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (38 loc) · 1.4 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
33
34
35
36
37
38
39
40
41
42
""" Install script for pyShortUrl """
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "pyShortUrl",
version = "0.9.0",
author = "Fictive Kin (mostly of previous work by Parth Bhatt)",
author_email = "[email protected]",
description = ("A python library to shorten urls using one of the url shortening services"),
license = "MIT",
keywords = "url shortening qrcode qr goo.gl bit.ly tinyurl.com j.mp bitly.com v.gd is.gd",
platforms = ['Linux', 'Max OS X', 'Windows', 'BSD', 'Unix'],
url = "https://github.com/fictivekin/pyshorturl",
data_files=[
('.', ['README.rst']),
],
packages = ['pyshorturl', 'pyshorturl/providers'],
long_description = read('README.rst'),
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Communications",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
install_requires=[
"requests"
],
)