-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 901 Bytes
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 901 Bytes
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "alchemy-config"
dynamic = ["version"]
description = "Configuration framework in Python for general configuration use."
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [
{ name = "Gabe Goodhart", email = "ghart@us.ibm.com" },
]
keywords = ["config"]
dependencies = [
"PyYAML>=5.3.1",
]
[project.urls]
Homepage = "https://github.com/IBM/alchemy-config"
[project.optional-dependencies]
test = [
"pytest>=5.3.2",
"pytest-cov>=2.9.0",
]
[tool.pytest.ini_options]
addopts = [
"--cov=aconfig",
"--cov-report=term",
"--cov-report=html",
"--disable-pytest-warnings",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.sdist]
include = ["aconfig/", "LICENSE", "README.md"]
[tool.hatch.build.targets.wheel]
packages = ["aconfig"]