-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
38 lines (33 loc) · 886 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "optimal_transport_reward"
authors = [{ name = "Yicheng Luo", email = "[email protected]" }]
requires-python = ">=3.9,<3.11"
dependencies = []
version = "0.1.0"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
]
[tool.hatch.build.targets.sdist]
ignore-vcs = true
[tool.hatch.build.targets.wheel]
packages = ["otr"]
[tool.ruff]
line-length = 88
exclude = ["third_party", ".venv"]
[tool.ruff.lint]
ignore = ["E731", "E501"]
select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
]
[tool.ruff.lint.extend-per-file-ignores]
"__init__.py" = ["F401"]