-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (23 loc) · 795 Bytes
/
pyproject.toml
File metadata and controls
26 lines (23 loc) · 795 Bytes
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
[project]
name = "metadata-adoption-quantify"
version = "2.0.0"
description = "This software extracts relevant data from SOMEF (Software Metadata Extraction Framework) results to answer specific research questions. The extracted insights are returned as structured JSON files, allowing easy integration and analysis."
authors = [
{name = "Anas-Elhounsri",email = "elhounsri.anas@gmail.com"}
]
license = {text = "Apache-2.0 license"}
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = [
"requests (>=2.30.0,<3.0.0)",
"somef (>=0.9.0)"
]git
[tool.poetry]
packages = [
{ include = "quantify", from = "src" }
]
[tool.poetry.scripts]
quantify = "quantify.cli:main"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"