-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (30 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
39 lines (30 loc) · 1.3 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "MaRDMO"
version = "0.4.2"
description = "RDMO Plugin to document and query mathematical research data using the MaRDI infrastructure."
readme = "README.md"
authors = [{name = "Marco Reidelbach", email = "reidelbach@zib.de"}]
maintainers = [{name = "Marco Reidelbach", email = "reidelbach@zib.de"}]
license = {text = "Apache Software License"}
requires-python = ">=3.10"
dependencies = [
"rdmo>=2.4.0"
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10"
]
[project.urls]
homepage = "https://github.com/MarcoReidelbach/MaRDMO"
[tool.setuptools.packages.find]
where = ["."]
include = ["MaRDMO*"]
[tool.setuptools.package-data]
"MaRDMO" = ["templates/MaRDMO/*.html", "data/*.json", "static/MaRDMO/images/*.png", "static/MaRDMO/js/**/*", "algorithm/data/*.json", "model/data/*.json", "publication/data/*.json", "search/data/*.json", "workflow/data/*.json", "model/queries/*.sparql", "algorithm/queries/*.sparql", "publication/queries/*.sparql", "workflow/queries/*.sparql"]
[project.optional-dependencies]
# Add optional dependencies here if needed