-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (45 loc) · 1.27 KB
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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cliffquant"
version = "0.1.2"
description = "Exact minimax FP16 scale selection for a multi-environment diagonal proxy"
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [{ name = "Muhammad Labeeb Aryan bin Mohd Lokman" }]
dependencies = ["numpy>=1.26"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.optional-dependencies]
dev = [
"build>=1.2",
"packaging>=26.2",
"pytest>=8.0",
"ruff==0.16.0",
]
figures = [
"matplotlib==3.10.8",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.data-files]
"share/cliffquant" = ["research/EXPERIMENT_001_PROTOCOL.md"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "RUF"]
[tool.ruff.format]
# This file's exact bytes are recorded by the released verifier identities.
exclude = ["src/cliffquant/full_model_verify.py"]