-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
54 lines (49 loc) · 955 Bytes
/
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
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tplr"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"bittensor==8.5.1",
"bt-decode==0.4.0",
"torch",
"boto3",
"einops",
"aiofiles",
"aioboto3",
"aiobotocore",
"transformers",
"pip",
"wandb",
"python-dotenv",
"zstandard",
"s3fs",
"pyarrow",
"scipy"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
"pytest-asyncio",
"ipykernel",
"ipython",
"pandas",
"matplotlib",
"seaborn",
"pytest-asyncio",
"ruff"
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
addopts = "-v -s --capture=no --log-cli-level=INFO"
asyncio_mode = "auto"
markers = [
"asyncio: mark test as async",
]