-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (37 loc) · 1.33 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
43
44
45
46
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
[project]
name = "mods4pandas"
version = "0.0.0"
authors = [
{name = "Mike Gerber", email = "[email protected]"},
{name = "The QURATOR SPK Team", email = "[email protected]"},
]
description = "Convert MODS metadata to a pandas DataFrame"
readme = "README.md"
license.file = "LICENSE"
requires-python = ">=3.8"
keywords = ["qurator", "mets", "mods", "metadata", "library"]
dynamic = ["dependencies", "optional-dependencies"]
# https://pypi.org/classifiers/
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Information Analysis",
]
[project.scripts]
mods4pandas="mods4pandas.mods4pandas:main"
alto4pandas="mods4pandas.alto4pandas:main"
[project.urls]
Homepage = "https://github.com/qurator-spk/mods4pandas"
Repository = "https://github.com/qurator-spk/mods4pandas.git"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies.dev = {file = ["requirements-dev.txt"]}
[tool.setuptools.packages.find]
where = ["src"]