https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 92c857093784ffe21babd2d64564a9cba491c8b7 authored by Yuki Shiino on 26 December 2018, 13:48:42 UTC
v8binding: Implement timers with IDL callback function of type Function
Tip revision: 92c8570
setup.py
from setuptools import setup

PACKAGE_VERSION = '2.0'
deps = ["six>=1.8", "h2==3.0.1"]

setup(name='wptserve',
      version=PACKAGE_VERSION,
      description="Python webserver intended for in web browser testing",
      long_description=open("README.md").read(),
      # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
      classifiers=["Development Status :: 5 - Production/Stable",
                   "License :: OSI Approved :: BSD License",
                   "Topic :: Internet :: WWW/HTTP :: HTTP Servers"],
      keywords='',
      author='James Graham',
      author_email='james@hoppipolla.co.uk',
      url='http://wptserve.readthedocs.org/',
      license='BSD',
      packages=['wptserve', 'wptserve.sslutils'],
      include_package_data=True,
      zip_safe=False,
      install_requires=deps
      )
back to top