-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.4 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (40 loc) · 1.4 KB
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
46
47
[build-system]
requires = ["setuptools==83.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "aset-network-python-sqlite"
version = "0.1.0a1"
description = "Non-normative HTTPS + Python + SQLite reference implementation for ASET Network Extension"
requires-python = ">=3.12"
license = { text = "Apache-2.0" }
authors = [{ name = "Dzmitry Prychyna" }]
readme = "README.md"
dependencies = [
"aset-python-sqlite @ git+https://github.com/attractor-set/aset-python-sqlite.git@daee6da46636ce4996cf1b880d1adbb6b36e1996",
"cryptography==46.0.4",
"fastapi==0.128.2",
"httpx==0.28.1",
"uvicorn==0.48.0",
]
keywords = ["ASET", "network", "SQLite", "HTTPS", "reference-implementation"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
[project.urls]
SeedImplementation = "https://github.com/attractor-set/aset-python-sqlite"
NetworkSpecification = "https://github.com/attractor-set/aset-network-extension"
[project.scripts]
aset-network-python-sqlite = "aset_network_python_sqlite.service:main"
aset-network-python-sqlite-adapter = "aset_network_python_sqlite.adapter:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
line-length = 100