Skip to content

Commit 4401df5

Browse files
Update setup.py
1 parent 862562d commit 4401df5

File tree

1 file changed

+22
-7
lines changed

1 file changed

+22
-7
lines changed

setup.py

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
11
from setuptools import setup, find_packages
22

3+
VERSION = "0.1.0"
4+
5+
with open("README.md") as f:
6+
readme = f.read()
7+
38
setup(
49
name="argmax_gradio_components",
5-
version="0.1.0",
6-
author="Your Name",
7-
author_email="your.email@example.com",
8-
description="A collection of custom Gradio components",
10+
version=VERSION,
11+
url="https://github.com/argmaxinc/gradio-components",
12+
description="Argmax Custom Components for Gradio",
13+
long_description=readme,
914
long_description_content_type="text/markdown",
10-
url="https://github.com/yourusername/argmax_gradio_components",
15+
author="Argmax, Inc.",
16+
install_requires=[
17+
"gradio"
18+
],
1119
package_dir={"": "src"},
1220
packages=find_packages(where="src"),
1321
package_data={
@@ -17,9 +25,16 @@
1725
},
1826
include_package_data=True,
1927
classifiers=[
28+
"Development Status :: 4 - Beta",
29+
"Intended Audience :: Developers",
2030
"Programming Language :: Python :: 3",
31+
"Programming Language :: Python :: 3.9",
32+
"Programming Language :: Python :: 3.10",
33+
"Programming Language :: Python :: 3.11",
2134
"License :: OSI Approved :: MIT License",
2235
"Operating System :: OS Independent",
36+
"Topic :: Scientific/Engineering",
37+
"Topic :: Software Development",
2338
],
24-
python_requires=">=3.7",
25-
)
39+
python_requires=">=3.9",
40+
)

0 commit comments

Comments
 (0)