-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (25 loc) · 847 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
from distutils.core import setup
setup(
name = 'orpim_api',
packages = ['orpim_api'],
version = '0.2',
license='APL-1.0',
description = 'A simple python wrapper for the orp.im URL shortener API',
author = 'ICTman1076',
author_email = 'orpim.pypi@sorcerertech.co.uk',
url = 'https://github.com/ICTman1076/orpim_api',
download_url = 'https://github.com/ICTman1076/orpim_api/archive/0.2.tar.gz',
keywords = ['URL shortener'],
install_requires=[],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Internet',
'License :: OSI Approved',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)