-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
44 lines (37 loc) · 1.24 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
# SPDX-FileCopyrightText: 2022 Tanguy Fardet
# SPDX-License-Identifier: CC0-1.0
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mpl-chord-diagram"
authors = [
{ name="Tanguy Fardet", email="[email protected]" },
{ name="Guillermo Pérez-Hernández" },
]
description = "Python module to plot chord diagrams with matplotlib."
readme = "README.md"
keywords = [
"chord diagram", "matplotlib", "plotting", "dataviz", "data visualization"
]
license = {file = "LICENSE"}
requires-python = ">=3.7"
dynamic = ["dependencies", "version"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Visualization",
"Framework :: Matplotlib",
]
[project.urls]
repository = "https://codeberg.org/tfardet/mpl_chord_diagram"
[tool.setuptools]
package-dir = {mpl_chord_diagram = "."}
packages = ["mpl_chord_diagram"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "mpl_chord_diagram.__version__"}