@@ -15,7 +15,38 @@ dynamic = [
15
15
# setup.py will set the version.
16
16
' version' ,
17
17
]
18
- # Python dependencies required for development
18
+ description = " On-device AI across mobile, embedded and edge for PyTorch"
19
+ readme = " README-wheel.md"
20
+ authors = [
21
+ {
name =
" PyTorch Team" ,
email =
" [email protected] " },
22
+ ]
23
+ license = {file = " LICENSE" }
24
+ keywords = [" pytorch" , " machine learning" ]
25
+ # PyPI package information.
26
+ classifiers = [
27
+ # How mature is this project? Common values are
28
+ # 3 - Alpha
29
+ # 4 - Beta
30
+ # 5 - Production/Stable
31
+ " Development Status :: 3 - Alpha" ,
32
+ " Intended Audience :: Developers" ,
33
+ " Intended Audience :: Education" ,
34
+ " Intended Audience :: Science/Research" ,
35
+ " License :: OSI Approved :: BSD License" ,
36
+ " Topic :: Scientific/Engineering" ,
37
+ " Topic :: Scientific/Engineering :: Mathematics" ,
38
+ " Topic :: Scientific/Engineering :: Artificial Intelligence" ,
39
+ " Topic :: Software Development" ,
40
+ " Topic :: Software Development :: Libraries" ,
41
+ " Topic :: Software Development :: Libraries :: Python Modules" ,
42
+ " Programming Language :: C++" ,
43
+ " Programming Language :: Python :: 3" ,
44
+ # Update this as we support more versions of python.
45
+ " Programming Language :: Python :: 3.10" ,
46
+ ]
47
+
48
+ # Python dependencies required for use.
49
+ requires-python = " >=3.10"
19
50
dependencies =[
20
51
" expecttest" ,
21
52
" flatbuffers" ,
@@ -32,6 +63,13 @@ dependencies=[
32
63
" tabulate" ,
33
64
]
34
65
66
+ [project .urls ]
67
+ # The keys are arbitrary but will be visible on PyPI.
68
+ Homepage = " https://pytorch.org/executorch/"
69
+ Repository = " https://github.com/pytorch/executorch"
70
+ Issues = " https://github.com/pytorch/executorch/issues"
71
+ Changelog = " https://github.com/pytorch/executorch/releases"
72
+
35
73
# Tell setuptools to generate commandline wrappers for tools that we install
36
74
# under data/bin in the pip package. This will put these commands on the user's
37
75
# path.
0 commit comments