-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (55 loc) · 1.21 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[project]
name = "noko"
version = "0.3.1"
description = "Log first, ask questions later."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "K.R. Zentner", email = "[email protected]" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Distributed Computing",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
]
[project.optional-dependencies]
git = [
"GitPython",
]
wandb = [
"wandb"
]
torch = [
"torch"
]
pyarrow = [
"pyarrow"
]
tensorboardX = [
"tensorboardX"
]
dev = []
test = ["pytest"]
recommended = [
"GitPython",
"pyarrow",
"tensorboardX",
]
[project.urls]
"Homepage" = "https://github.com/krzentner/noko"
"Bug Reports" = "https://github.com/krzentner/noko/issues"
"Source" = "https://github.com/krzentner/noko"
[tool.pyright]
include = ["src"]
venv = ".venv"