-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.22 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "ilp_nlp"
version = "2024.0.1"
authors = [
{name = "Oleh Shkalikov", email = "Oleh.Shkalikov@mailbox.tu-dresden.de"},
]
description = "Formulation of NLP tasks as an ILP problems"
requires-python = ">=3.11"
dependencies = [
"torch==2.3.1",
"networkx==3.2.1",
"transformers==4.45.2",
"datasets==2.20.0",
"evaluate==0.4.2",
"seqeval==1.2.2",
"hydra-core==1.3.2",
"awesome_align @ git+https://github.com/neulab/awesome-align@5f150d45bbe51e167daf0a84abebaeb07c3323d1",
"simalign @ git+https://github.com/ShkalikovOleh/simalign@b4e991b81790d08b27ae80449c80341645a6cbe2",
"nltk==3.8.1",
"cvxpy @ git+https://github.com/cvxpy/cvxpy@13c10b1a389b88d2d5a589e28e6f2063498b2938",
"nmtscore @ git+https://github.com/ShkalikovOleh/nmtscore@b246b5f2e4b13b3de6ee3e90e586d64c0059e2a6"
]
license = {file = "LICENSE"}
readme = "README.md"
[tool.setuptools.packages.find]
where = ["."]
namespaces = false
[project.urls]
Repository = "https://github.com/ShkalikovOleh/master-thesis"
[project.optional-dependencies]
dev = [
"black",
"flake8",
"isort"
]
[tool.isort]
profile = "black"