-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
55 lines (50 loc) · 1.83 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
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup
requirements = []
# since v0.1.6 this requires beautifulsoup4.
try:
with open('requirements.txt') as f:
requirements = f.read().splitlines()
except Exception as ex:
with open('TinyURL3.egg-info\requires.txt') as f:
requirements = f.read().splitlines()
version = '0.1.9'
if not version:
raise RuntimeError('version is not set')
with open('README.md') as f:
readme = f.read()
setup(name='TinyURL3',
author='Decorater',
author_email='[email protected]',
url='https://github.com/AraHaan/TinyURL',
bugtrack_url='https://github.com/AraHaan/TinyURL/issues',
version=version,
packages=['TinyURL'],
license='MIT',
description='TinyURL for Python 3.x',
long_description=readme,
maintainer_email='[email protected]',
download_url='https://github.com/AraHaan/TinyURL',
include_package_data=True,
install_requires=requirements,
platforms='Any',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
]
)