-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (70 loc) · 1.84 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (70 loc) · 1.84 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[tool.poetry]
name = "tensorlink"
version = "0.3.1"
description = "Tensorlink is a decentralized Python library for distributed PyTorch models, providing easy Hugging Face API access and enabling users to share compute resources across a global network."
authors = [
"Tensorlink Lab <smartnodes-lab@proton.me>",
"Matthew Hawken",
"Nikita Vassilyev"
]
readme = "README.md"
packages = [{include = "tensorlink"}]
homepage = "https://tensorlink.io"
documentation = "https://tensorlink.io/docs"
repository = "https://github.com/mattjhawken/tensorlink"
license = "MIT"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Unix"
]
[tool.poetry.dependencies]
python = "^3.10"
cryptography = "^45"
fastapi = "^0.115"
uvicorn = "^0.34"
web3 = "^7.3"
miniupnpc = "^2.2"
psutil = "^7"
requests = "^2.32"
python-dotenv = "^1.0"
tqdm = "^4.66"
torch = "^2.7"
transformers = "^5.5.3"
accelerate = "^1.12"
matplotlib = "^3.9"
networkx = "^3.2"
graphviz = "^0.20"
torchviz = "^0.0.2"
multiprocess = "^0.70"
pydantic = "^2.9"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.4"
black = "^24.1.1"
pylint = "^3.0.3"
mypy = "^1.8.0"
coverage = "^7.4.0"
flake8 = "^7.1.1"
pandas = "^2.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py310', 'py311', 'py312']
skip-string-normalization = true
[tool.flake8]
max-line-length = 120
ignore = ["E203", "W503"]
max-complexity = 10
[tool.pylint.messages_control]
disable = ["C0111", "R0903"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true