-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (95 loc) · 2.31 KB
/
pyproject.toml
File metadata and controls
104 lines (95 loc) · 2.31 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[build-system]
requires = ["setuptools>=67,<77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ztxexp"
version = "1.0.3"
authors = [
{ name = "ztxtech", email = "ztxtech@foxmail.com" },
]
description = "Experiment framework for ML/LLM workflows with reproducible run artifacts."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
keywords = [
"experiment management",
"deep learning",
"large language models",
"reproducibility",
"hyperparameter search",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"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",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"dill>=0.3.8",
"joblib>=1.3",
"numpy>=1.23",
"pandas>=1.5",
"psutil>=5.9",
]
[project.optional-dependencies]
torch = [
"torch>=2.0",
]
docs = [
"mkdocs>=1.6",
"mkdocs-material>=9.5",
"mkdocs-gen-files>=0.5",
"mkdocs-literate-nav>=0.6",
"mkdocstrings[python]>=0.26",
"pyyaml>=6.0",
]
excel = [
"openpyxl>=3.1",
]
mlflow = [
"mlflow>=2.14",
]
wandb = [
"wandb>=0.17",
]
dev = [
"build>=1.2",
"pytest>=8.0",
"ruff>=0.6",
"twine>=5.0",
"openpyxl>=3.1",
"mkdocs>=1.6",
"mkdocs-material>=9.5",
"mkdocs-gen-files>=0.5",
"mkdocs-literate-nav>=0.6",
"mkdocstrings[python]>=0.26",
]
[project.urls]
Homepage = "https://github.com/ztxtech/ztxexp"
Repository = "https://github.com/ztxtech/ztxexp"
Documentation = "https://ztxexp.readthedocs.io/zh-cn/latest/"
Issues = "https://github.com/ztxtech/ztxexp/issues"
[project.scripts]
ztxexp = "ztxexp.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["ztxexp*"]
exclude = ["tests*", "examples*", "docs*"]
[tool.setuptools]
license-files = []
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I", "B"]