-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
42 lines (34 loc) · 967 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "HGQ"
version = "0.2.3"
authors = [{ name = "Chang Sun", email = "[email protected]" }]
description = "High Granularity Quantizarion"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 5 - Production/Stable",
]
dependencies = ['tensorflow>=2.13', 'numpy>=1.23', 'keras<3']
[project.urls]
repository = "https://github.com/calad0i/HGQ"
[tool.setuptools_scm]
write_to = "src/HGQ/_version.py"
[project.optional-dependencies]
docs = ["sphinx", "sphinx-rtd-theme", "myst-parser", "qkeras", "pyparsing"]
test = [
"hls4ml>=1.0",
"qkeras",
"pytest",
"pytest-xdist",
"pytest-env",
"pytest-cov",
"pytest-sugar",
"pyparsing",
]