-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
66 lines (57 loc) · 1.38 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# pyproject.toml
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "cag"
version = "1.6.0"
description = 'This is a general framework to create arango db graphs and annotate them.'
readme = "README.md"
authors = [
{ name = "Roxanne El Baff", email = "[email protected]" },
{ name = "Tobias Hecking", email = "[email protected]" },
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
]
keywords = [
'graph',
'architectural framework',
'graph creator',
'graph annotator',
]
dependencies = [
'dataclasses>=0.6',
'spacy>=3.4.1',
'spacy_arguing_lexicon>=0.0.3',
'empath>=0.89',
'pytest>=7.1.2',
'networkx>=2.8.5',
'nltk>=3.4.5',
'pyvis>=0.2.1',
'tqdm>=4.43.0',
'python-arango>=7.4.1',
'pyArango>=2.0.1',
'tomli>=2.0.1',
'transformers>=4.26.1',
'tenacity>=8.2.2',
'pandas',
'python-slugify~=6.1.2',
'rich~=12.6.0',
'cookiecutter>=2.1.1',
'python-dotenv>=1.0.0'
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = ["pip-tools", "pytest"]
[project.urls]
Homepage = 'https://github.com/DLR-SC/corpus-annotation-graph-builder'
[project.scripts]
cag = "cag.cli:app"
[tool.black]
line-length = 79