-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (49 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
52 lines (49 loc) · 1.1 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
[build-system]
requires = ["wheel", "cmake", "setuptools>=42", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"
[project]
name = "praxis"
version = "0.2.0"
description = "for all, home"
authors = [{ name = "Ryan J. Brooks", email = "ryan@src.eco" }]
urls = { label = "https://src.eco" }
license = { text = "MIT" }
requires-python = ">=3.7"
dependencies = [
"asciichartpy",
"attrs",
"blessed",
"cmake",
"datasets",
"evaluate",
"flask>=3.0,<3.1",
"flask-cors",
"flask-socketio>=5.6",
"isort",
# "lighteval[math]",
"lightning",
"lsprotocol",
"matplotlib",
"mpmath",
"networkx",
"pygls",
"psutil",
"pytest",
"pytorch_optimizer==3.5.1",
"setuptools",
"torch",
"torcheval",
"transformers",
"watchdog",
"pyyaml",
"werkzeug",
"wheel",
"xformers",
"zstandard",
]
[tool.setuptools]
packages = ["praxis"]
[tool.pytest.ini_options]
# Exclude staging directory from test collection (manual demonstration scripts)
norecursedirs = ["staging", ".git", ".venv", "build", "dist"]
testpaths = ["tests"]