-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
65 lines (58 loc) · 1.64 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
[project]
name = "devopsdriver"
description = "DevOps tools"
readme = "README.md"
license = { file = "LICENSE" }
dynamic = ["version"]
requires-python = ">= 3.10"
dependencies = [
"PyYAML==6.0.3",
"keyring==25.7.0",
"setuptools==80.9.0", # neded for azure-devops to use 7.1 API
"azure-devops==7.1.0b4",
"Mako==1.3.10",
"PyGithub==2.8.1",
]
keywords = [
"azure",
"devops",
"jira",
"confluence",
"email",
"pipelines",
"tools",
"github",
]
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Programming Language :: Python :: 3.10",
"Topic :: Utilities",
"Topic :: Software Development",
]
authors = [{ name = "Marc Page", email = "marcallenpage@gmail.com" }]
[project.scripts]
settings = "devopsdriver.manage_settings:main"
[tool.setuptools.package-data]
"*" = ["*.mako"]
[tool.setuptools.packages.find]
include = ["devopsdriver*"]
[project.optional-dependencies]
dev = ["black>=24.3.0", "pylint>=3.1.0"]
test = ["pytest>=8.1.1", "coverage>=7.4.4"]
doc = []
[project.urls]
Homepage = "https://github.com/marcpage/devops-driver"
Documentation = "https://github.com/marcpage/devops-driver"
Repository = "https://github.com/marcpage/devops-driver.git"
Issues = "https://github.com/marcpage/devops-driver/issues"
Changelog = "https://github.com/marcpage/devops-driver/releases"
[tool.setuptools.dynamic]
version = { attr = "devopsdriver.__version__" }
[build-system]
requires = ["setuptools >= 69.2"]
build-backend = "setuptools.build_meta"