19 lines
598 B
Python
19 lines
598 B
Python
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',
|
|
)
|