-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
42 lines (38 loc) · 1.31 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
#!/usr/bin/env python
from distutils.core import setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (ImportError, IOError):
long_description = open('README.md').read()
version = '1.0.1'
setup(
name='python-status',
version=version,
author='Avinash Sajjanshetty',
author_email='[email protected]',
py_modules=['status'],
url='https://github.com/avinassh/status/',
license='BSD',
description='HTTP Status for Humans',
long_description=long_description,
classifiers=[
'Development Status :: 6 - Mature',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
)