-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·89 lines (80 loc) · 2.44 KB
/
Copy pathpyproject.toml
File metadata and controls
executable file
·89 lines (80 loc) · 2.44 KB
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
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/#example
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "hyperway"
dynamic = ["version"]
authors = [
{ name="Strangemother", email="hyperway@strangemother.com" },
]
description = "A graph based functional execution library. Connect functions arbitrarily through a unique API"
readme = "README.md"
requires-python = ">=3.8"
keywords = [
"graph",
"execution-engine",
"functional-programming",
"dataflow",
"computational-graph",
"workflow",
"pipeline",
]
classifiers = [
"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",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
license = "MIT"
[project.optional-dependencies]
graphviz = [
"graphviz>=0.20",
]
dev = [
"pytest",
"pytest-cov",
"tox",
]
docs = [
"sphinx",
"sphinx-rtd-theme",
]
[project.urls]
"Homepage" = "https://github.com/Strangemother/python-hyperway"
"Documentation" = "https://github.com/Strangemother/python-hyperway/tree/main/docs"
"Bug Tracker" = "https://github.com/Strangemother/python-hyperway/issues"
"Source Code" = "https://github.com/Strangemother/python-hyperway"
"Changelog" = "https://github.com/Strangemother/python-hyperway/blob/main/RELEASE_NOTES_v1.0.0.md"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["hyperway", "hyperway.graph"]
[tool.setuptools.dynamic]
version = {attr = "hyperway._version.__version__"}
[tool.setuptools.package-data]
hyperway = ["**/*.html", "**/*.js", "**/*.css"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
addopts = "-v --strict-markers"
[tool.coverage.run]
source = ["src/hyperway"]
omit = ["*/tests/*", "*/__pycache__/*"]
[tool.coverage.report]
precision = 2
show_missing = true
skip_covered = false
[tool.portray]
output_dir = "documentation_website"
modules = ["hyperway"]
port = 8001