-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
66 lines (59 loc) · 1.53 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
[tool.isort]
known_ap = "adaptation_pathways"
lines_after_imports = 2
sections = "FUTURE,STDLIB,THIRDPARTY,AP,FIRSTPARTY,LOCALFOLDER"
profile = "black"
[tool.pylint]
disable = "C0103, C0114, C0115, C0116, C0302, E0401, W0212, W0511, R0801"
max-line-length=240
extension-pkg-allow-list = [
"matplotlib",
"PySide6",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "adaptation_pathways"
version = "0.0.10"
# dynamic = [
# "version",
# ]
authors = [
{ name = "Example Author", email = "[email protected]" },
]
description = "A small example package"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"docopt",
"matplotlib",
"networkx[default]",
"pyside6",
]
[project.urls]
"Homepage" = "https://todo"
"Bug Tracker" = "https://todo"
[project.scripts]
ap_export = "adaptation_pathways.cli.export:main"
ap_import = "adaptation_pathways.cli.import_:main"
ap_pathway_generator = "adaptation_pathways.cli.pathway_generator:main"
ap_plot_graphs = "adaptation_pathways.cli.plot_graphs:main"
ap_plot_pathway_map = "adaptation_pathways.cli.plot_pathway_map:main"
[tool.hatch.build.targets.wheel]
# include = [
# ]
packages = [
"source/package/adaptation_pathways",
]
exclude = [
"CMakeLists.txt",
]
# [tool.hatch.version]
# path = "adaptation_pathways/version.py"
# pattern = "VERSION (?P<version>\\d+\\.\\d+\\.\\d+)\\s"