-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
63 lines (58 loc) · 1.35 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
[build-system]
requires = [
"setuptools>=61",
]
build-backend = "setuptools.build_meta"
[project]
name = "moralization"
version = "0.0.1"
description = "Moralization analysis in corpora"
readme = "README.md"
maintainers = [
{ name = "Inga Ulusoy", email = "[email protected]" },
{ name = "Liam Keegan", email = "[email protected]" },
]
requires-python = ">=3.7"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"pandas",
"numpy",
"dkpro-cassis",
"matplotlib",
"IPython",
"seaborn",
"click",
"importlib_metadata",
"openpyxl",
"pytest",
"pytest-cov",
"ipywidgets<8.0.5",
"spacy",
"spacy-huggingface-hub",
"jupyter",
"classy_classification",
"spacy-span-analyzer",
"textacy",
"wheel",
"dash",
"jupyter-dash",
"datasets",
"transformers",
"seqeval",
"torch",
"evaluate",
"accelerate",
"python-frontmatter",
]
[tool.setuptools.package-data]
# Include any *.xml files found in the "data" subdirectory of "moralization"
"moralization.data" = ["*.xml"]
[project.scripts]
moralization_copy_notebooks = "moralization.paths:copy_notebooks"
[tool.setuptools]
packages = ["moralization", "moralization.data"]