-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpyproject.toml
82 lines (75 loc) · 1.76 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
75
76
77
78
79
80
81
82
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dparse"
version = "0.6.4"
description = "A parser for Python dependency files"
keywords = ["dparse"]
readme = "README.rst"
authors = [
{name = "Jannis Gebauer", email = "support@pyup.io"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.7"
dependencies = [
"packaging",
"tomli; python_version < '3.11'",
]
license = {text = "MIT license"}
[project.urls]
Homepage = "https://github.com/pyupio/dparse"
[project.optional-dependencies]
pipenv = [
"pipenv",
]
conda = [
"pyyaml",
]
poetry = [
"poetry",
]
all = [
"dparse[poetry]",
"dparse[pipenv]",
"dparse[conda]"
]
[tool.pytest.ini_options]
addopts = "--strict-markers"
markers = [
"conda: requires the conda extra",
"pipenv: requires the pipenv extra",
"poetry: requires the poetry extra",
"basic: requires no extras",
]
[tool.coverage.run]
source_pkgs = ["dparse"]
branch = true
parallel = true
omit = [
]
[tool.coverage.paths]
source = ["dparse", "*/dparse"]
[tool.coverage.report]
exclude_lines = [
]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "pep440"
version_provider = "pep621"
update_changelog_on_bump = false
annotated_tag = true
changelog_incremental = false