-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (32 loc) · 874 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tapescript"
version = "0.6.1"
authors = [
{ name="k98kurz", email="k98kurz@gmail.com" },
]
dependencies = [
"PyNaCl>=1.5.0"
]
description = "Bytecode VM for embedding ACL in distributed systems"
readme = "readme.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: OS Independent",
"Topic :: Security :: Cryptography",
"Programming Language :: Other Scripting Engines"
]
[project.urls]
"Homepage" = "https://github.com/k98kurz/tapescript"
"Bug Tracker" = "https://github.com/k98kurz/tapescript/issues"
[project.scripts]
tapescript = "tapescript.tools:run_cli"
[project.optional-dependencies]
docs = [
"autodox >= 0.1.16"
]