-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
87 lines (76 loc) · 2.17 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
83
84
85
86
87
[build-system]
requires = ["setuptools>=61.0.0", "wheel>=0.28.0"]
build-backend = "setuptools.build_meta"
[project]
name = "plette"
description = "Structured Pipfile and Pipfile.lock models."
authors = [{name = "Tzu-ping Chung", email = "[email protected]"}]
readme = "README.rst"
license = {text = "ISC License"}
keywords = []
classifiers = [
"Development Status :: 1 - Planning",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
]
urls = {Homepage = "https://github.com/sarugaku/plette"}
requires-python = ">=3.7"
dependencies = ["tomlkit"]
dynamic = ["version"]
[project.optional-dependencies]
tests = [
"pytest",
"pytest-cov",
"pytest-xdist",
]
validation = ["cerberus"]
[tool.setuptools]
include-package-data = false
zip-safe = true
[tool.distutils.bdist_wheel]
universal = 1
[tool.isort]
atomic = true
ignore_trailing_comma = true
known_first_party = [
"plette",
"tests",
]
lines_after_imports = 2
lines_between_types = 1
multi_line_output = 5
not_skip = ["__init__.py"]
[tool.pytest.ini_options]
addopts = "-ra"
norecursedirs = [".*", "build", "dist", "docs", "news", "tasks"]
testpaths = ["tests/"]
[tool.towncrier]
directory = 'news/'
filename = 'CHANGELOG.rst'
issue_format = '`#{issue} <https://github.com/sarugaku/plette/issues/{issue}>`_'
package = 'plette'
package_dir = 'src'
template = 'tasks/CHANGELOG.rst.jinja2'
title_format = '{version} ({project_date})'
[[tool.towncrier.type]]
directory = 'feature'
name = 'Features'
showcontent = true
[[tool.towncrier.type]]
directory = 'bugfix'
name = 'Bug Fixes'
showcontent = true
[[tool.towncrier.type]]
directory = 'trivial'
name = 'Trivial Changes'
showcontent = false
[[tool.towncrier.type]]
directory = 'removal'
name = 'Removals and Deprecations'
showcontent = true