generated from opentensor/bittensor-subnet-template
-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
43 lines (40 loc) · 1.18 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
41
42
43
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["masa"]
[project]
name = "masa"
version = "1.1.0"
description = "bittensor subnet for masa protocol"
authors = [
{ name = "masa.ai", email = "hello@masa.ai" }
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"bittensor==8.2.0",
"loguru==0.7.2",
"python-dotenv==0.21.0",
"torch==2.3.0",
"scikit-learn==1.5.1",
"masa-ai==0.2.5",
"pytest==7.2.2",
"pytest-asyncio==0.21.0",
"requests==2.32.3",
]