-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 883 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 883 Bytes
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
[build-system]
requires = ["setuptools >= 68.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "jsonlogic-py"
version = "0.1"
authors = [
{ name="Peter Pirkelbauer"}, { name="Seth Bromberger"}
]
description="A Python package that emits JSON Logic"
readme = "README.md"
dynamic = ["dependencies", "optional-dependencies"]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {dev = {file = ["requirements-dev.txt"] }}
[project.urls]
Homepage = "https://github.com/MetallData/jsonlogic"
Issues = "https://github.com/MetallData/jsonlogic/issues"