forked from MarcoReidelbach/MaRDMO-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (34 loc) · 1.18 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "MaRDMO"
version = "0.1.2"
description = "RDMO Plugin to document and query mathematical research data using the MaRDI infrastructure."
readme = "README.md"
authors = [{name = "Marco Reidelbach", email = "[email protected]"}]
maintainers = [{name = "Marco Reidelbach", email = "[email protected]"}]
license = {text = "Apache Software License"}
requires-python = ">=3.10"
dependencies = [
"rdmo>=2.1.3",
"bibtexparser",
"langdetect",
"pylatexenc",
"wikibaseintegrator",
]
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", "templates/MaRDMO/*.md", "templates/MaRDMO/*.mediawiki", "data/*.json", "static/MaRDMO/images/*.png"]
[project.optional-dependencies]
# Add optional dependencies here if needed