forked from Datura-ai/lium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (62 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (62 loc) · 1.73 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "lium.io"
version = "0.0.7"
description = "A custom CLI tool for Lium. Lium CLI provides tools for interacting with the Lium ecosystem from the command line."
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [
{name = "Lium", email = "support@lium.io"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent"
]
dependencies = [
"typer>=0.12",
"rich>=13.7",
"pycryptodome>=3.0.0,<4.0.0",
"PyYAML~=6.0.1",
"aiohttp~=3.10.2",
"backoff~=2.2.1",
"GitPython>=3.0.0",
"async-substrate-interface>=1.1.0",
"scalecodec==1.2.11",
"plotly>=6.0.0",
"plotille>=5.0.0",
"fuzzywuzzy~=0.18.0",
"python-Levenshtein",
"netaddr~=1.3.0",
"Jinja2",
"pywry>=0.6.2",
"async-property==0.2.2",
"bittensor-cli>=9.1.0",
"paramiko>=3.5.1",
"docker>=7.1.0",
"bittensor>=9.8.3",
# SDK dependencies (now embedded)
"pydantic>=2.0.0",
"requests>=2.31.0",
"loguru>=0.7.0",
"python-dotenv>=1.1.1",
]
[project.optional-dependencies]
dev = ["pytest", "black", "wheel"]
docs = ["sphinx>=7.3", "sphinx-rtd-theme>=1.3"]
[project.scripts]
lium = "lium.cli.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["lium"]
[project.urls]
Homepage = "https://github.com/Datura-ai/lium-cli"
Repository = "https://github.com/Datura-ai/lium-cli"
Issues = "https://github.com/Datura-ai/lium-cli/issues"