-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
61 lines (55 loc) · 1.65 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
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=61.0", "packaging"]
build-backend = "setuptools.build_meta"
[project]
name="owlite"
dynamic = ["version"]
description = "OwLite - No-Code AI compression Toolkit"
dependencies = [
"onnx>=1.15, <1.17",
"torch>=2.1.2,<2.5",
"onnxruntime>=1.17, <1.19",
"colored",
"yacs",
"tabulate",
"requests",
"tqdm",
"pydantic",
"lazy_imports",
"numpy<2.0.0",
]
authors = [
{name = "SqueezeBits.inc", email = "[email protected]"}
]
maintainers = [
{name = "SqueezeBits.inc", email = "[email protected]"}
]
requires-python = ">=3.10, <3.13"
keywords=["torch", "onnx", "graph", "quantization"]
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Repository = "https://github.com/SqueezeBits/owlite"
Documentation = "https://squeezebits.gitbook.io/owlite/quick/readme"
[project.scripts]
owlite = "owlite.core.cli.owlite_cli:main"
[tool.setuptools.dynamic]
version = {attr = "owlite.core.constants.OWLITE_VERSION"}
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["owlite-capi*"]
[tool.setuptools.package-data]
owlite = ["*.so"]