-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 935 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
26
27
28
29
#!/usr/bin/env python
# written by Daniel Oaks <[email protected]>
# licensed under the BSD 2-clause license
from distutils.core import setup
with open('README.rst') as file:
long_description = file.read()
setup(
name='http-status',
version='1.0.0',
description='HTTP Status codes, names, and descriptions.',
long_description=long_description,
author='Daniel Oaks, Chad Nelson',
author_email='[email protected]',
url='https://github.com/DanielOaks/http_status',
packages=['http_status'],
package_dir={'http_status': 'src/http_status'},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
]
)