-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (60 loc) · 1.84 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
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ref_gsd"
dynamic = ["version"]
description = "Reference implementation of generalised score distribution in python"
authors = [{ name = "Krzysztof Rusek", email = "krussek@gmail.com" }]
license = {file = "LICENSE"}
readme = "README.md"
keywords = ["jax", "distribution", "QoE", "test"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
]
# HATCH_PYTHON=python3.10
requires-python = ">=3.10"
dependencies=["jax>=0.4.23"]
[project.urls]
Homepage = "https://github.com/gsd-authors/gsd"
Documentation = "https://gsd-authors.github.io/gsd/"
[tool.hatch.version]
path = "src/gsd/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/gsd"]
[tool.hatch.build.targets]
include = [
"/src/",
]
[tool.hatch.envs.default]
dependencies=["jaxlib>=0.4.23"]
[project.optional-dependencies]
experimental = [
"optimistix>=0.0.6",
]
[tool.hatch.envs.default.scripts]
test = "python -m unittest discover -p '*test.py'"
[tool.ruff]
extend-include = ["*.ipynb"]
fixable = ["I001", "F401"]
ignore = ["E402", "E721", "E731", "E741", "F722"]
ignore-init-module-imports = true
select = ["E", "F", "I001"]
src = []
[tool.ruff.isort]
combine-as-imports = true
lines-after-imports = 2
order-by-type = false
[tool.pyright]
reportIncompatibleMethodOverride = true
include = ["src", "tests"]