forked from pydot/pydot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
83 lines (75 loc) · 2.06 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# SPDX-FileCopyrightText: 2024 pydot contributors
#
# SPDX-License-Identifier: MIT
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = 'pydot'
description = "Python interface to Graphviz's Dot"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">= 3.8"
dependencies = [
'pyparsing>=3.0.9'
]
authors = [
{name = "Ero Carrera", email = "[email protected]"},
{name = "Peter Nowee", email = "[email protected]"},
{name = "Łukasz", email = "[email protected]"},
{name = "FeRD (Frank Dana)", email = "[email protected]"},
]
maintainers = [
{name = "Peter Nowee", email = "[email protected]"},
{name = "Łukasz", email = "[email protected]"},
]
keywords = ["graphviz", "dot", "graphs", "visualization"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"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",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = [
'version',
]
[tool.setuptools.dynamic]
version = {attr = "pydot.__version__"}
[tool.setuptools]
license-files = [
'LICENSES/*',
]
[project.urls]
Homepage = "https://github.com/pydot/pydot"
Changelog = "https://github.com/pydot/pydot/blob/main/ChangeLog"
"Bug Tracker" = "https://github.com/pydot/pydot/issues"
[project.optional-dependencies]
dev = [
'chardet',
'parameterized',
'ruff'
]
tests = [
'chardet',
'parameterized',
'ruff',
'tox',
'pytest',
'pytest-cov',
'pytest-xdist[psutil]',
]
release = ['zest.releaser[recommended]']
[tool.ruff]
line-length = 79
[tool.ruff.lint]
select = ['E', 'F', 'W', 'I', 'UP', 'C4']