1
1
from setuptools import setup , find_packages
2
2
3
+ VERSION = "0.1.0"
4
+
5
+ with open ("README.md" ) as f :
6
+ readme = f .read ()
7
+
3
8
setup (
4
9
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 ,
9
14
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
+ ],
11
19
package_dir = {"" : "src" },
12
20
packages = find_packages (where = "src" ),
13
21
package_data = {
17
25
},
18
26
include_package_data = True ,
19
27
classifiers = [
28
+ "Development Status :: 4 - Beta" ,
29
+ "Intended Audience :: Developers" ,
20
30
"Programming Language :: Python :: 3" ,
31
+ "Programming Language :: Python :: 3.9" ,
32
+ "Programming Language :: Python :: 3.10" ,
33
+ "Programming Language :: Python :: 3.11" ,
21
34
"License :: OSI Approved :: MIT License" ,
22
35
"Operating System :: OS Independent" ,
36
+ "Topic :: Scientific/Engineering" ,
37
+ "Topic :: Software Development" ,
23
38
],
24
- python_requires = ">=3.7 " ,
25
- )
39
+ python_requires = ">=3.9 " ,
40
+ )
0 commit comments