web_python

This commit is contained in:
Barak Michener 2020-12-04 18:01:27 -08:00
parent 03beb6970c
commit e8868b636f
9 changed files with 680 additions and 0 deletions

19
web_python/setup.py Normal file
View file

@ -0,0 +1,19 @@
import setuptools
setuptools.setup(
name="ray-web", # Replace with your own username
version="0.0.1",
author="Ray Authors",
author_email="ray@anyscale.com",
description="For use in pyodide",
long_description="A longer description",
long_description_content_type="text/markdown",
url="https://github.com/ray-project/ray-web",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)