-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
63 lines (57 loc) · 1.91 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
62
63
[project]
name = "burocrata"
description = "Check and insert copyright and license notices into source code"
dynamic = ["version"]
authors = [
{name="The Burocrata Developers", email="[email protected]"},
]
maintainers = [
{name = "Leonardo Uieda", email = "[email protected]"}
]
readme = "README.md"
license = {text = "MIT"}
keywords = ["license", "development", "copyright"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8"
dependencies = [
"click>=8.0.0,<9.0.0",
"tomli>=1.1.0,<3.0.0",
"pathspec>=0.10.1",
]
[project.urls]
"Homepage" = "https://github.com/fatiando/burocrata"
"Changelog" = "https://github.com/fatiando/burocrata/blob/main/CHANGELOG.md"
"Bug Tracker" = "https://github.com/fatiando/burocrata/issues"
"Source Code" = "https://github.com/fatiando/burocrata"
[project.scripts]
burocrata = "burocrata.cli:main"
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"
write_to = "burocrata/_version.py"
# Make sure isort and Black are compatible
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.burocrata]
notice = '''
# Copyright (c) 2024 The Burocrata Developers.
# Distributed under the terms of the MIT License.
# SPDX-License-Identifier: MIT
# This code is part of the Fatiando a Terra project (https://www.fatiando.org).'''