-
Notifications
You must be signed in to change notification settings - Fork 385
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (89 loc) · 2.77 KB
/
pyproject.toml
File metadata and controls
103 lines (89 loc) · 2.77 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[project]
name = "invoke"
requires-python = ">=3.9"
version = "3.0.0"
description = "Pythonic task execution"
readme = "README.rst"
license = "BSD-2-Clause"
license-files = ["LICENSE"]
authors = [{ name = "Jeff Forcier", email = "jeff@bitprophet.org" }]
# We have a few 'dependencies' but we vendor them internally.
dependencies = []
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Software Distribution",
"Topic :: System :: Systems Administration",
]
[project.urls]
Docs = "https://docs.pyinvoke.org"
Source = "https://github.com/pyinvoke/invoke"
Changelog = "https://www.pyinvoke.org/changelog.html"
CI = "https://app.circleci.com/pipelines/github/pyinvoke/invoke"
Issues = "https://github.com/pyinvoke/invoke/issues"
[project.scripts]
invoke = "invoke.main:program.run"
inv = "invoke.main:program.run"
[build-system]
requires = ["setuptools >= 77"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["invoke*"]
[dependency-groups]
dev = [
# Invocations, for all sorts of things
"invocations>=4",
# Coverage!
"coverage>=6.2,<7",
# Docs
"releases>=2",
"alabaster==0.7.12",
# Testing
"pytest-relaxed>=2",
"pytest-cov>=4",
# Formatting
"flake8~=7.3.0",
"black>=23.3.0",
# Packaging
"setuptools>56",
# Debuggery
"icecream>=2.1",
# typing
"mypy==0.971",
"types-PyYAML==6.0.12.4",
]
[tool.mypy]
disallow_untyped_defs = true
exclude = ["integration/", "tests/", "setup.py", "sites/www/conf.py", "build/"]
ignore_missing_imports = true
warn_incomplete_stub = true
warn_redundant_casts = true
warn_unused_ignores = true
overrides = [
{ module = "alabaster", ignore_missing_imports = true },
{ module = "icecream", ignore_missing_imports = true },
{ module = "invocations", ignore_missing_imports = true },
{ module = "invoke.vendor.*", ignore_errors = true },
{ module = "pytest_relaxed", ignore_missing_imports = true },
]
[tool.ruff]
line-length = 79