-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 763 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 763 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
27
28
29
30
31
32
33
34
35
36
37
38
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "ruminant"
authors = [
{name = "Laura Kirsch"}
]
description = "Recursive metadata extraction tool"
version = "0.0.32"
readme = "README.md"
requires-python = ">=3.10"
dependencies = []
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "LGPL-3.0"
license-files = ["LICENSE"]
[project.scripts]
ruminant = "ruminant.main:main"
[project.urls]
"Homepage" = "https://github.com/jakiki6/ruminant"
"Issues" = "https://github.com/jakiki6/ruminant/issues"
[project.optional-dependencies]
recommended = [
"tqdm",
"pyzstd",
"backports.zstd",
"cryptography"
]
dev = [
"flake8"
]