2019-02-19 00:26:09 -08:00
|
|
|
try:
|
|
|
|
from setuptools import setup
|
|
|
|
except ImportError:
|
|
|
|
from distutils.core import setup
|
2022-04-26 14:26:54 -07:00
|
|
|
from pathlib import Path
|
2022-06-14 12:30:09 -07:00
|
|
|
import re
|
2022-04-26 14:26:54 -07:00
|
|
|
|
|
|
|
this_directory = Path(__file__).parent
|
|
|
|
|
2022-06-24 21:24:57 -07:00
|
|
|
long_description = (this_directory / "README.md").read_text(encoding='utf8')
|
2022-06-14 12:30:09 -07:00
|
|
|
# Replace relative paths to images with absolute paths
|
|
|
|
long_description = re.sub("website/homepage/", "https://raw.githubusercontent.com/gradio-app/gradio/main/website/homepage/", long_description)
|
|
|
|
long_description = re.sub(r"demo/([\S]*.gif)", r"https://raw.githubusercontent.com/gradio-app/gradio/main/demo/\g<1>", long_description)
|
2022-06-13 17:57:45 -07:00
|
|
|
|
2022-06-24 21:24:57 -07:00
|
|
|
version = (this_directory / "gradio" / "version.txt").read_text(
|
|
|
|
encoding='utf8').strip()
|
|
|
|
|
2022-07-04 09:57:12 -04:00
|
|
|
with open("requirements.txt") as reqs:
|
|
|
|
requirements = reqs.readlines()
|
|
|
|
|
2019-02-19 00:26:09 -08:00
|
|
|
setup(
|
2022-01-21 16:44:12 +03:00
|
|
|
name="gradio",
|
2022-06-24 21:24:57 -07:00
|
|
|
version=version,
|
2019-02-19 01:19:19 -08:00
|
|
|
include_package_data=True,
|
2022-01-21 16:44:12 +03:00
|
|
|
description="Python library for easily interacting with trained machine learning models",
|
2022-04-26 14:26:54 -07:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type='text/markdown',
|
2022-03-04 09:15:30 +03:00
|
|
|
author="Abubakar Abid, Ali Abid, Ali Abdalla, Dawood Khan, Ahsen Khaliq, Pete Allen, Ömer Faruk Özdemir",
|
2022-01-21 16:44:12 +03:00
|
|
|
author_email="team@gradio.app",
|
2022-05-25 10:12:24 +03:00
|
|
|
url="https://github.com/gradio-app/gradio",
|
2022-07-18 12:03:13 -04:00
|
|
|
packages=["gradio", "gradio.test_data", "test.test_files"],
|
2022-01-21 16:44:12 +03:00
|
|
|
license="Apache License 2.0",
|
|
|
|
keywords=["machine learning", "visualization", "reproducibility"],
|
2022-07-04 09:57:12 -04:00
|
|
|
install_requires=requirements,
|
2022-05-25 10:12:24 +03:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': ['gradio=gradio.reload:run_in_reload_mode']
|
2022-05-24 00:38:53 +03:00
|
|
|
},
|
2022-06-07 12:00:29 -07:00
|
|
|
python_requires='>=3.7',
|
2019-02-19 00:26:09 -08:00
|
|
|
)
|