-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 884 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (27 loc) · 884 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>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tornado-demix"
version = "1.0.0"
description = "Tornado.Cash (ETH) demixing toolkit via amount + timing correlation on public on-chain data."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "tornado-demix contributors" }]
keywords = ["ethereum", "tornado-cash", "blockchain", "forensics", "demixing", "etherscan"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Security",
]
dependencies = [
"requests>=2.28",
]
[project.scripts]
tornado-demix = "tornado_demix.cli:main"
[project.urls]
Homepage = "https://github.com/prettydeath/tornado-demix"
Issues = "https://github.com/prettydeath/tornado-demix/issues"
[tool.setuptools]
packages = ["tornado_demix"]