-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.33 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.distutils.bdist_wheel]
universal = true
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["variantbuild*"]
exclude = ["tests*", "*.tests", "*.tests.*"]
namespaces = true
[project]
name = "variantbuild"
version = "0.0.1.dev1"
description = "A library to provide support for variants"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "Jonathan Dekhtiar", email = "[email protected]" },
{ name = "Michael Sarahan", email = "[email protected]" },
]
maintainers = [
{ name = "Jonathan Dekhtiar", email = "[email protected]" },
{ name = "Michael Sarahan", email = "[email protected]" },
]
dependencies = ["attrs>=24.3,<24.4"]
[project.optional-dependencies]
dev = [
"check-manifest",
# Pre Commit Hooks
"pre-commit>=4,<5",
# Linting
"ruff>=0.10,<1.0",
]
test = [
"jsondiff>=2.2,<2.3",
"pytest>=8.0.0,<9.0.0",
"pytest-cov>=5.0.0,<6.0.0",
"pytest-dotenv>=0.5.0,<1.0.0",
"pytest-env>=1.1.3,<2.0.0",
"pytest-runner>=6.0.0,<7.0.0",
"pytest-ordering>=0.6,<1.0.0",
"parameterized>=0.9.0,<0.10",
]
[tool.pytest.ini_options]
testpaths = ["tests/"]
addopts = "-vvv --cov=variantbuild --cov-report=term-missing"