-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
37 lines (33 loc) · 1016 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "digitalmarketplace-developer-tools"
dynamic = ["version"]
dependencies = [
"colored>=2",
"invoke>=2",
]
requires-python = ">=3.9,<3.14"
authors = [
{name = "GDS Developers"},
{name = "CCS Developers"},
]
description = "Common developer tools for Digital Marketplace repos"
readme = "README.md"
license = {file = "LICENSE"}
[project.urls]
Homepage = "https://github.com/Crown-Commercial-Service/digitalmarketplace-developer-tools"
Repository = "https://github.com/Crown-Commercial-Service/digitalmarketplace-developer-tools.git"
Issues = "https://github.com/Crown-Commercial-Service/digitalmarketplace-developer-tools/issues"
Changelog = "https://github.com/Crown-Commercial-Service/digitalmarketplace-developer-tools/CHANGELOG.md"
[project.optional-dependencies]
dev = [
'flake8',
'black',
'invoke>=1.5',
'mypy',
'pytest',
]
[tool.setuptools.dynamic]
version = {attr = "dmdevtools.__version__"}