-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (57 loc) · 1.93 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 = "dependente"
description = "Inspect Python package dependencies"
dynamic = ["version"]
authors = [
{name="The Dependente Developers", email="[email protected]"},
]
maintainers = [
{name = "Leonardo Uieda", email = "[email protected]"}
]
readme = "README.md"
license = {text = "MIT"}
keywords = ["dependencies", "pyproject", "setuptools"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"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.7",
"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.7"
dependencies = [
"click>=8.0.0,<9.0.0",
"tomli>=1.1.0,<3.0.0",
]
[project.urls]
"Homepage" = "https://github.com/fatiando/dependente"
"Changelog" = "https://github.com/fatiando/dependente/blob/main/CHANGELOG.md"
"Bug Tracker" = "https://github.com/fatiando/dependente/issues"
"Source Code" = "https://github.com/fatiando/dependente"
[project.scripts]
dependente = "dependente.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 = "dependente/_version.py"
# Make sure isort and Black are compatible
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.burocrata]
notice = '''
# Copyright (c) 2021 The Dependente 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).'''