-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (38 loc) · 1.08 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "taoverse"
version = "1.3.7"
authors = [
{ name="Taoverse" },
]
description = "A utilities library for model training subnets."
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"bittensor >= 8.4.3",
"colorama",
"huggingface_hub",
"numpy",
"safetensors",
"torch",
"transformers",
"wandb",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/macrocosm-os/taoverse"
Issues = "https://github.com/macrocosm-os/taoverse/issues"