-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (32 loc) · 1.12 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
[build-system]
requires = ['hatchling']
build-backend = 'hatchling.build'
[project]
name = "base-dag"
version = '0.1.10'
description = 'A simple base implementation of a Directed Acyclic Graph, intended to be subclassed for more specific functionality.'
authors = [{name = "Mitchell Tillman", email ="[email protected]"}]
readme = "README.md" # Path to your README file
keywords = ["DAG", "graph", "directed acyclic graph", "data structures"]
dependencies = [
]
[project.urls]
homepage = "https://github.com/ResearchOS/base-dag" # Main homepage or project website
repository = "https://github.com/ResearchOS/base-dag"
documentation = "https://github.com/ResearchOS/base-dag"
[dependency-groups]
dev = [
"mkdocs>=1.6.1",
"mkdocs-awesome-pages-plugin>=2.10.1",
"mkdocs-git-revision-date-localized-plugin>=1.3.0",
"mkdocs-material>=9.5.49",
"mkdocstrings>=0.27.0",
"pytest>=8.3.4",
"toml>=0.10.2", # NOTE: This isn't really maintained, I'd suggest using an alternative, such as the built-in tomllib (>=3.11) or tomli
]
[tool.hatch.build]
source = "src"
[tool.pytest.ini_options]
pythonpath = [
"src"
]