-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 977 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 977 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
32
33
34
35
36
37
38
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dincli"
version = "0.1.0"
description = "Command-line interface for Decentralized Intelligence Network"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name = "Umer Majeed", email = "umermjd11@gmail.com"},
{ name = "Abraham Nash", email = "abrahamnash@protonmail.com"}
]
license = { text = "MIT" }
keywords = ["blockchain", "federated-learning", "privacy", "cli", "fastapi", "DIN"]
dependencies = [
"typer>=0.9.0",
"rich>=13.0.0,<15.0.0",
"python-dotenv>=1.0.0",
"web3>=6.0.0",
"requests>=2.31.0",
"torch==2.6.0",
"torchvision==0.21.0",
"platformdirs>=4.3.0",
"numpy>=2.2.0",
"py-cid>=0.5.0"
]
[project.scripts]
dincli = "dincli.main:app"
# ✅ Let setuptools auto-find packages (including 'dincli')
[tool.setuptools.packages.find]
where = ["."] # look in project root
include = ["dincli*"] # only include dincli and subpackages