-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (46 loc) · 1.47 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
[project]
name = "doot"
description = "Simple zero dependency task runner"
version = "1.0.0a4"
requires-python = ">=3.8"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["task", "runner", "automation", "build", "cli"]
authors = [
{name = "Adam Olsen", email = "arolsen@gmail.com"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Topic :: Software Development :: Build Tools",
"Typing :: Typed",
]
[project.optional-dependencies]
test = [
"pyright>=1.1.0,<1.2.0",
"pytest>=7.0.0,<8.0.0",
"pytest-mock>=3.10.0,<4.0.0",
"pytest-pretty>=1.2.0,<2.0.0",
"pytest-cov>=4.0.0,<5.0.0"
]
dev = ["black>=22.3.0,<23.0.0"]
[project.urls]
Homepage = "https://github.com/synic/doot"
Repository = "https://github.com/synic/doot"
Documentation = "https://github.com/synic/doot#readme"
"Bug Tracker" = "https://github.com/synic/doot/issues"
Changelog = "https://github.com/synic/doot/blob/main/CHANGELOG.md"
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
target-version = ["py38"]