-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
54 lines (50 loc) · 1.48 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
[tool.poetry]
name = "somef"
version = "0.10.3"
description = "SOftware Metadata Extraction Framework: A tool for automatically extracting relevant software metadata from a source code repository (README, package files, etc)."
authors = ["Daniel Garijo <daniel.garijo@upm.es>"]
readme = "README.md"
packages = [
{ include = "somef", from = "src" }
]
classifiers = [
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.urls]
homepage = "https://github.com/KnowledgeCaptureAndDiscovery/somef"
[tool.poetry.dependencies]
python = ">=3.11,<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,<8.0"
imbalanced-learn = "^0.14.1"
pytest = ">=8,<10"
morph-kgc = "^2.7.0"
bibtexparser = "^1.4.1"
nbformat = "^5.9.2"
markdown = "^3.5.2"
requests = "^2.31.0"
scikit-learn = "1.5.0"
pyyaml = "^6.0.2"
lxml = "^6.1.0"
markdown-it-py = "^3.0"
[tool.poetry.scripts]
somef = "somef.__main__:cli"
[build-system]
requires = ["poetry-core>=1.1.10"]
build-backend = "poetry.core.masonry.api"