-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (41 loc) · 980 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "jixia"
description = "Python binding for jixia"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
keywords = [
"lean",
"programming language",
"proof assistant",
]
authors = [
{ name = "Tony Beta Lambda", email = "[email protected]" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Other",
"Topic :: File Formats :: JSON :: JSON Schema",
"Topic :: Scientific/Engineering :: Mathematics",
"Typing :: Typed",
]
dynamic = ["version"]
dependencies = [
"pydantic>=2.10",
]
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx-rtd-theme",
"autodoc_pydantic",
]
[project.urls]
Source = "https://github.com/frenzymath/jixia_py"
[tool.hatch.version]
path = "src/jixia/__init__.py"