-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
61 lines (54 loc) · 1.61 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
[build-system]
requires = ["setuptools>=80.9.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sequifier"
version = "v1.1.1.4"
authors = [
{ name = "Leon Luithlen", email = "leontimnaluithlen@gmail.com" },
]
description = "Train a transformer model with the command line"
readme = "README.md"
license = { text = "BSD 3-Clause" }
keywords = ["transformer", "sequence classification", "machine learning", "sequence", "sequence modelling", "nlp", "language", "language modelling", "torch", "pytorch"]
requires-python = ">=3.10,<3.13"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"polars>=1.31.0,<2.0",
"numpy>=1.23,<2.0",
"torch>=2.4,<2.9",
"torch_optimizer>=0.3.0,<0.4.0",
"onnx>=1.15.0,<2.0.0",
"onnxruntime>=1.17,<2.0",
"onnxscript>=0.5.4",
"polars>= 1.0.0,<2.0.0",
"pyyaml>=6.0,<7.0",
"pydantic>=2.0,<3.0",
"pyarrow>=15.0",
"fastparquet>=2024.2.0,<2025.0.0",
"beartype>=0.18.5,<0.19.0",
"psutil>=7.0.0,<8.0.0",
"loguru>=0.7.3,<1.0.0",
"csvkit>=1.0,<2.0",
"plotly>=4.0.0",
]
[project.urls]
Homepage = "https://github.com/0xideas/sequifier"
Repository = "https://github.com/0xideas/sequifier"
[project.scripts]
sequifier = "sequifier.sequifier:main"
[project.optional-dependencies]
test = [
"pytest>=7.2,<8.0",
"plotly>=6.0,<7.0"
]
[tool.pytest.ini_options]
markers = [
"optional: marks tests as optional (run with -m optional)"
]
addopts = "-m 'not optional'"