-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (58 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
63 lines (58 loc) · 1.57 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "patchwork"
version = "2.0.0"
description = "Deployment/sysadmin operations, powered by Fabric"
authors = [{ name = "Jeff Forcier", email = "jeff@bitprophet.org" }]
maintainers = [{ name = "Jeff Forcier", email = "jeff@bitprophet.org" }]
requires-python = ">=3.7"
readme = "README.rst"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"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",
]
dependencies = [
"fabric>=2.2",
]
[project.optional-dependencies]
docs = [
"releases",
"alabaster",
"sphinx",
]
test = [
"invocations",
"pytest",
"mock",
"pytest-relaxed",
]
test-cov = [
"pytest-cov",
]
dev = [
"patchwork[test]",
"pre-commit",
]
[project.urls]
homepage = "https://www.fabfile.org/"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "*"