forked from IBM/graph2tac
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 832 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 832 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "text2tac"
version = "1.0.1"
authors = [
{ name="Jelle Piepenbrock, Lasse Blaauwbroek, Mirek Olsak, Vasily Pestun, Jason Rute, Fidel I. Schaposnik Massolo"},
]
description = "text2tac converts text to actions"
readme = "README.md"
requires-python = ">3.9, <3.11"
dependencies = [
'pytactician==15.1',
'tqdm',
'numpy',
'fire',
'pycapnp',
'psutil',
'dataclasses-json',
'pyyaml',
'graphviz',
'transformers==4.29.2',
'datasets',
'tokenizers',
'tqdm',
'torch==1.12.0',
'numpy',
'pandas',
]
license = {file = "LICENSE"}
[project.scripts]
text2tac-server = "text2tac.transformer.predict_server:main"