-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 774 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
with open('README', encoding='utf8') as fh:
long_description = fh.read()
setup(name='rangehttpserver',
version='1.4.0',
description='SimpleHTTPServer with support for Range requests',
long_description=long_description,
long_description_content_type='text/markdown',
author='Dan Vanderkam',
author_email='danvdk@gmail.com',
url='https://github.com/danvk/RangeHTTPServer/',
packages=['RangeHTTPServer'],
install_requires=[],
classifiers=[
'Environment :: Console',
'Environment :: Web Environment',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License'
]
)