-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.02 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 = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "ipabrew"
version = "0.1.0"
description = "Proto-language reconstruction web app and local CLI"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"flask>=3.0,<4.0",
"flask-cors>=5.0,<6.0",
"gunicorn>=23.0,<24.0",
"lingpy>=2.6,<3.0",
"lingrex>=1.4,<2.0",
"panphon>=0.22,<1.0",
"pandas>=2.0,<4.0",
"pyyaml>=6.0",
"torch>=2.0",
"pytorch-lightning>=2.0,<3.0",
"einops",
"tabulate",
"torchmetrics>=0.11,<1.0",
"scikit-learn",
"scipy",
"regex",
"transformers",
"torchshow",
]
[project.optional-dependencies]
test = ["pytest>=7.0"]
[project.scripts]
ipabrew = "app.cli:main"
[tool.setuptools]
package-dir = {"" = "backend"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["backend"]
[tool.setuptools.package-data]
app = [
"data/*.tsv",
"templates/*.html",
"static/css/*.css",
"static/js/*.js",
"static/*.png",
]