-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (29 loc) · 1.01 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "nirdarchive2rocrate"
authors = [{name = "Hanne Moa", email = "[email protected]"}]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Archiving",
"Topic :: Utilities",
]
dynamic = ["version", "description"]
requires-python = ">=3.11.0"
dependencies = ["requests"]
[project.scripts]
nirdarchive2rocrate = "nirdarchive2rocrate.cli:main"
[project.urls]
Home = "https://github.com/UNINETTSigma2/nirdarchive2rocrate"