-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 791 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 791 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
[project]
name = "python_module"
dynamic = ["version"]
authors = [{name="Elizabeth Alpert", email="betsyalpert@fastmail.com"}]
description = "A package of some sample workflow config. Not functional."
readme = "readme.md"
license = {text = "CC-BY 4.0 International"}
requires-python = ">= 3.11"
dependencies = [
"click >= 8.1"
]
[project.optional-dependencies]
dev = [
"pytest",
"nox",
"pre-commit",
"pip-tools"
]
tidy = [
"black",
"flake8"
]
[project.scripts]
python-module-cli="python_module:main"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "python_module.__version__"}
[tool.black]
line-length = 88
# extend-exclude also excludes the contents of .gitignore
extend-exclude = '''
(
)
'''