-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpyproject.toml
54 lines (50 loc) · 1.33 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
[tool.poetry]
name = "somef"
version = "0.9.11"
description = "SOftware Metadata Extraction Framework: A tool for automatically extracting relevant software information from readme files."
authors = ["Daniel Garijo <daniel.garijo@upm.es>"]
packages = [
{ include = "somef", from = "src" }
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules"
]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<=3.13"
bs4 = "^0.0.1"
click = "^8.1.7"
click-option-group = "^0.5.6"
matplotlib = "^3.8.2"
nltk = "^3.9.0"
numpy = "^1.26.3"
pandas = "^2.1.4"
rdflib = "^7.0.0"
textblob = "^0.17.1"
validators = "^0.22.0"
xgboost = "^2.0.3"
scipy = "^1.11.4"
inflect = "^7.0.0"
contractions = "^0.1.73"
chardet = "^5.2.0"
imbalanced-learn = "^0.11.0"
pytest = "^7.4.4"
morph-kgc = "^2.6.4"
bibtexparser = "^1.4.1"
nbformat = "^5.9.2"
markdown = "^3.5.2"
rdflib-jsonld = "^0.6.2"
requests = "^2.31.0"
scikit-learn = "1.3.2"
pyyaml = "^6.0.2"
lxml = "^5.1.0"
[tool.poetry.scripts]
somef = "somef.__main__:cli"
[tool.poetry.urls]
homepage = "https://github.com/KnowledgeCaptureAndDiscovery/somef"
[build-system]
requires = ["poetry-core>=1.1.10"]
build-backend = "poetry.core.masonry.api"