-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 736 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 736 Bytes
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
from setuptools import setup
install_requires = [
'tornado>=3.1.0',
]
setup(
name='SimpleTornadoServer',
version='1.0',
description='better SimpleHTTPServer using tornado',
author='iMom0',
author_email='mobeiheart@gmail.com',
url='https://github.com/imom0/SimpleTornadoServer',
license='BSD',
py_modules=['SimpleTornadoServer'],
zip_safe=False,
install_requires=install_requires,
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Topic :: Utilities',
]
)