-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 836 Bytes
/
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
[project]
name = "inductive"
description = "Inductive data structures for Python"
version = "0.0.1-post1"
readme = "README.md"
keywords = [
"inductive",
"data structures",
"nat",
"natural numbers",
"list",
"linked list",
"dependent typing",
]
requires-python = ">=3.12"
dependencies = [
"attrs>=24,<25",
"result>=0.17,<0.18",
"option-python>=0.0.2,<0.1",
]
[project.optional-dependencies]
dev = [
"build>=1.2,<1.3",
"coverage>=7,<8",
"hypothesis>=6,<7",
"pytest>=8,<9",
"setuptools>=75,<76",
"twine>=5,<6",
]
[project.license]
file = "LICENSE"
[[project.authors]]
name = "Lexa"
email = "[email protected]"
[project.urls]
source = "https://github.com/qexat/inductive"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"