-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (23 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
31 lines (23 loc) · 857 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
31
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fastaudit"
description = "A lightweight execution guard for running LLM-generated Python in a normal Python process."
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [{ name = "Answer.AI" }]
classifiers = [ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", ]
dependencies = [ "fastcore", ]
[project.optional-dependencies]
dev = [ "pytest", "orjson", "numpy", "fastship", "build", "twine", ]
[project.urls]
Homepage = "https://github.com/AnswerDotAI/fastaudit"
[tool.setuptools.dynamic]
version = { attr = "fastaudit.__version__" }
[tool.setuptools.packages.find]
include = ["fastaudit"]
[tool.pytest.ini_options]
testpaths = ["tests"]