-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 998 Bytes
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 998 Bytes
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
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "unfccc-etf-cli"
version = "1.1.2"
authors = [
{name = "UNFCCC / ICT / Delivery", email = "eas@unfccc.int" },
]
description = "Command-line tools for processing ETF data files"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
dependencies = [
"click"
]
[project.optional-dependencies]
dev = [
"faker",
"pytest"
]
[project.scripts]
etf = "unfccc.etf.cli:main"
[project.urls]
Homepage = "https://github.com/unfccc/etf-cli"
Issues = "https://github.com/unfccc/etf-cli/issues"
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools.package-data]
"unfccc.etf.assets" = ["*.json", "*.lzma"]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "pep440"
version_provider = "pep621"
update_changelog_on_bump = false