setup.py (883B)
1 from setuptools import setup 2 3 PACKAGE_VERSION = '4.0.3' 4 deps = [ 5 "h2>=4.1.0", 6 "pywebsocket3>=4.0.2", 7 ] 8 9 setup(name='wptserve', 10 version=PACKAGE_VERSION, 11 description="Python web server intended for in web browser testing", 12 long_description=open("README.md").read(), 13 # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers 14 classifiers=["Development Status :: 5 - Production/Stable", 15 "License :: OSI Approved :: BSD License", 16 "Topic :: Internet :: WWW/HTTP :: HTTP Servers"], 17 keywords='', 18 author='James Graham', 19 author_email='james@hoppipolla.co.uk', 20 url='http://wptserve.readthedocs.org/', 21 license='BSD', 22 packages=['wptserve', 'wptserve.sslutils', 'wptserve.cgi'], 23 include_package_data=True, 24 zip_safe=False, 25 install_requires=deps 26 )