-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpyproject.toml
93 lines (85 loc) · 2.55 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
84
85
86
87
88
89
90
91
92
93
[project]
name = "prov"
dynamic = ["version"]
description = "A library for W3C Provenance Data Model supporting PROV-JSON, PROV-XML and PROV-O (RDF)"
readme = "README.rst"
authors = [
{ name = "Trung Dong Huynh", email = "[email protected]" }
]
keywords = ["provenance", "graph", "model", "PROV", "PROV-DM", "PROV-JSON", "W3C", "PROV-XML", "PROV-N", "PROV-O", "RDF"]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Security",
"Topic :: System :: Logging",
]
requires-python = ">=3.9"
dependencies = [
"networkx>=2.0",
# Supporting graphic outputs (e.g. PNG, SVG, PDF) - a local graphviz is required
"pydot>=1.2.0",
"python-dateutil>=2.2", # TODO: is this really needed?
]
[project.optional-dependencies]
rdf = [
"rdflib>=4.2.1,<7",
]
xml = [
"lxml>=3.3.5",
]
[project.urls]
Homepage = "https://github.com/trungdong/prov"
Documentation = "https://prov.readthedocs.io"
Repository = "https://github.com/trungdong/prov"
Issues = "https://github.com/trungdong/prov/issues"
Changelog = "https://prov.readthedocs.io/en/latest/history.html"
[build-system]
requires = ["setuptools>=40.8.0", "wheel"] # PEP 508 specifications.
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "prov.__version__"}
[dependency-groups]
dev = [
"black>=24.10.0",
"bumpversion>=0.6.0",
"coverage>=7.6.10",
"flake8>=7.1.1",
"setuptools>=75.8.0",
"sphinx>=8.1.3",
"tox>=4.23.2",
"wheel>=0.45.1",
]
[tool.black]
line-length = 88
target-version = ["py39", "py310", "py311", "py312"]
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.mypy_cache
| \.tox
| build
| dist
)/
)
'''
[tool.pylint.messages_control]
disable = "C0330, C0326"
[tool.pylint.format]
max-line-length = "88"