-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (96 loc) · 2.08 KB
/
Copy pathpyproject.toml
File metadata and controls
100 lines (96 loc) · 2.08 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[tool.poetry]
name = "rsfc"
version = "0.1.3"
description = "EVERSE Research Software Fairness Checks"
authors = ["Andres Montero <andres.montero.martin@upm.es>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "rsfc", from = "src" }]
homepage = "https://github.com/oeg-upm/rsfc"
[tool.poetry.dependencies]
python = ">=3.10,<=3.13"
somef = "0.9.11"
regex = "2024.11.6"
requests = "2.32.4"
anyascii = "0.3.2"
attrs = "25.3.0"
beautifulsoup4 = "4.13.4"
bibtexparser = "1.4.3"
bs4 = "0.0.1"
build = "1.2.2.post1"
certifi = "2025.6.15"
chardet = "5.2.0"
charset-normalizer = "3.4.2"
click = "8.2.1"
click-option-group = "0.5.7"
contourpy = "1.3.2"
contractions = "0.1.73"
cycler = "0.12.1"
duckdb = "1.3.1"
elementpath = "4.8.0"
falcon = "3.1.3"
fastjsonschema = "2.21.1"
fonttools = "4.58.4"
idna = "3.10"
imbalanced-learn = "0.11.0"
inflect = "7.5.0"
iniconfig = "2.1.0"
jinja2 = "3.1.6"
joblib = "1.5.1"
jsonpath-python = "1.0.6"
jsonschema = "4.24.0"
jsonschema-specifications = "2025.4.1"
jupyter-core = "5.8.1"
kiwisolver = "1.4.8"
lxml = "5.1.0"
markdown = "3.8.1"
markupsafe = "3.0.2"
matplotlib = "3.10.3"
more-itertools = "10.7.0"
morph-kgc = "2.8.1"
nbformat = "5.10.4"
nltk = "3.9.1"
numpy = "1.26.4"
packaging = "25.0"
pandas = "2.3.0"
pillow = "11.2.1"
platformdirs = "4.3.8"
pluggy = "1.6.0"
pyahocorasick = "2.2.0"
pyoxigraph = "0.3.22"
pyparsing = "3.2.3"
pyproject-hooks = "1.2.0"
pytest = "7.4.4"
python-dateutil = "2.9.0.post0"
pytz = "2025.2"
pyyaml = "6.0.2"
rdflib = "7.1.4"
rdflib-jsonld = "0.6.2"
referencing = "0.36.2"
rpds-py = "0.25.1"
ruamel-yaml = "0.18.14"
ruamel-yaml-clib = "0.2.12"
scikit-learn = "1.3.2"
scipy = "1.15.3"
six = "1.17.0"
soupsieve = "2.7"
tabulate = "0.9.0"
textblob = "0.17.1"
textsearch = "0.0.24"
threadpoolctl = "3.6.0"
toml = "0.10.2"
tomli = "2.2.1"
tqdm = "4.67.1"
traitlets = "5.14.3"
typeguard = "4.4.4"
typing-extensions = "4.14.0"
tzdata = "2025.2"
urllib3 = "2.5.0"
validators = "0.22.0"
xgboost = "2.1.4"
pystache = "0.6.8"
[tool.poetry.scripts]
rsfc = "rsfc.main:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"