-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (53 loc) · 1.35 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[project]
name = "uksi-importer"
version = "0.0.1"
description = "Scripts for UKSI importing from AccessDB to Data Portal"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "GPL-3.0-or-later" }
authors = [
{ name = "Natural History Museum", email = "data@nhm.ac.uk" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"dataset==1.6.2",
"click==8.1.7",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool]
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
exclude = ["tests", "docs"]
[project.scripts]
uksi = "uksi.cli:cli"
[tool.commitizen]
name = "cz_nhm"
version = "0.0.1"
tag_format = "v$version"
update_changelog_on_bump = true
changelog_incremental = true
version_files = [
"pyproject.toml:version",
"CITATION.cff:^version"
]
[tool.black]
line-length = 88
skip_string_normalization = true
[tool.pylint]
max-line-length = 88
disable = ["C0114", "R0903"]
[tool.docformatter]
wrap-summaries = 88
wrap-descriptions = 88
pre-summary-newline = true
make-summary-multi-line = true