-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.37 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
[tool.poetry]
name = "somef_core"
version = "0.0.1"
description = "SOftware Metadata Extraction Framework (CORE): 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_core", from = "src" }
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.urls]
homepage = "https://github.com/SciCodes/somef-core"
[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"
textblob = "^0.17.1"
validators = "^0.22.0"
scipy = "^1.11.4"
inflect = "^7.0.0"
contractions = "^0.1.73"
chardet = "^5.2.0"
pytest = "^8.0.0"
bibtexparser = "^1.4.1"
nbformat = "^5.9.2"
markdown = "^3.5.2"
markdown-it-py = "^3.0"
requests = "^2.31.0"
pyyaml = "^6.0.2"
lxml = "^5.1.0"
[tool.poetry.scripts]
somef_core = "somef_core.__main__:cli"
[build-system]
requires = ["poetry-core>=1.1.10"]
build-backend = "poetry.core.masonry.api"