-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.47 KB
/
pyproject.toml
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
41
42
43
44
45
46
47
48
#
# For licensing see accompanying LICENSE file.
# Copyright (C) 2023 Apple Inc. All Rights Reserved.
#
[project]
name = "apple-upscale" # Required
version = "0.1.1" # Required
description = "Export utility for unconstrained channel pruned models" # Optional
readme = "README.md" # Optional
requires-python = ">=3.7"
license = {file = "LICENSE"}
keywords = ["pruning", "export", "unconstrained pruning"] # Optional
authors = [
{name = "Alvin Wan", email = "[email protected]" } # Optional
]
classifiers = [ # Optional
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apple Public Source License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [ # Optional
"seaborn==0.12.1",
"torch==2.0.1",
"torchvision==0.15.2",
"yacs==0.1.8",
"ninja==1.10.2.3",
]
[project.optional-dependencies] # Optional
test = ["pytest==7.3.2"]
[project.urls] # Optional
"Homepage" = "https://github.com/apple/ml-upscale"
"Bug Reports" = "https://github.com/apple/ml-upscale/issues"
"Source" = "https://github.com/apple/ml-upscale"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"