-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
78 lines (69 loc) · 2.09 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
[project]
name = "ogdf-python"
version = "0.3.4-dev"
description = "Automagic Python Bindings for the Open Graph Drawing Framework written in C++"
authors = [
{ name = "Simon D. Fink", email = "finksim@fim.uni-passau.de" },
]
requires-python = ">=3.7"
license = "Apache-2.0"
readme = "README.rst"
homepage = "https://ogdf.github.io"
repository = "https://github.com/N-Coder/ogdf-python"
documentation = "https://ogdf-python.readthedocs.io"
keywords = ["ogdf", "graph", "network", "drawing", "algorithm"]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Unix',
'Programming Language :: C++',
'Programming Language :: Python :: 3 :: Only',
'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',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries :: Python Modules',
]
dependencies = [
"cppyy",
"importlib-resources>=1",
]
[project.optional-dependencies]
quickstart = [
"jupyterlab",
"ipympl",
"matplotlib",
"ogdf-wheel",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.bumpversion]
current_version = "0.3.4-dev"
commit = "True"
tag = "True"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)-?(?P<release>dev)?"
serialize = [
"{major}.{minor}.{patch}-{release}",
"{major}.{minor}.{patch}"
]
[[tool.bumpversion.files]]
filename = "pyproject.toml"
[[tool.bumpversion.files]]
filename = "src/ogdf_python/__init__.py"
[[tool.bumpversion.files]]
filename = "README.rst"
[tool.bumpversion.parts.release]
values = [
"dev",
"release"
]
optional_value = "release"