-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
55 lines (47 loc) · 1.68 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
48
49
50
51
52
53
54
55
[tool.sphinx]
source = "docs/source"
build = "docs/build"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["pypergraph"]
[tool.hatch.version]
path = "pypergraph/__about__.py"
[project]
name = "pypergraph-dag"
dynamic = ["version"]
description = "The Pypergraph package provides secure wallet functionality in Python and convenient wrappers for interacting with Constellation Network APIs, inspired by the TypeScript library DAG4.js created by Stardust Collective."
authors = [{ name = "Michael Brummer Ringdal", email = "micbr@protonmail.com" }]
maintainers = [{name = "Michael Brummer Ringdal", email = "micbr@pm.me"}]
dependencies = [
"base58~=2.1.1",
"mnemonic~=0.21",
"bip32utils~=0.3.post4",
"cryptography~=44.0.1",
"httpx~=0.28.1",
"eth-utils~=5.2.0",
"eth-keys~=0.6.1",
"eth-keyfile~=0.8.1",
"eth-hash[pycryptodome]~=0.7.1",
"pydantic~=2.10.6",
"aiofiles~=24.1.0",
"argon2-cffi~=23.1.0",
"prometheus_client~=0.21.1",
"Rx~=3.2.0",
"brotlipy~=0.7.0"
]
requires-python = ">=3.9"
readme = "README.md"
license = {file="LICENSE"}
keywords = ["hypergraph", "dag", "constellation", "metagraph", "constellationnetwork", "cryptography", "crypto", "cryptocurrency", "wallet", "finance", "dag4", "dag4.js", "stardust", "collective"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
]
[project.urls]
Homepage = "https://mringdal.com"
Repository = "https://github.com/buzzgreyday/pypergraph.git"
"Bug Tracker" = "https://github.com/buzzgreyday/pypergraph/issues"