-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.13 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import setup, find_packages
VERSION = "0.1.0"
with open("README.md") as f:
readme = f.read()
setup(
name="argmax_gradio_components",
version=VERSION,
url="https://github.com/argmaxinc/gradio-components",
description="Argmax Custom Components for Gradio",
long_description=readme,
long_description_content_type="text/markdown",
author="Argmax, Inc.",
install_requires=[
"gradio"
],
package_dir={"": "src"},
packages=find_packages(where="src"),
package_data={
"argmax_gradio_components": [
"**/*",
],
},
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
],
python_requires=">=3.9",
)