-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (40 loc) · 990 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
43
44
45
46
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sowing"
version = "0.0.6"
authors = [
{ name="Mattéo Delabre", email="[email protected]" },
]
description = "sowing"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
dependencies = [
"immutables",
]
[project.urls]
"Homepage" = "https://github.com/UdeM-LBIT/sowing"
"Bug Tracker" = "https://github.com/UdeM-LBIT/sowing/issues"
[tool.hatch.build]
sources = ["src"]
only-include = ["src"]
[tool.hatch.envs.dev]
dependencies = [
"pytest",
"black",
"ruff",
]
[tool.hatch.envs.dev.scripts]
test = "pytest --exitfirst"
test-verbose = "pytest --exitfirst -vv"
format = "black ."
format-check = "black --check ."
lint = "ruff check ."
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]