-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 842 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 842 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "aurutilsutils"
description = "Utilities extending aurutils"
readme = "README.md"
authors = [
{ name = "Arvid Norlander", email = "VorpalBlade@users.noreply.github.com" }
]
license = { text = "ISC" }
dependencies = [
"appdirs",
"more-itertools",
"networkx",
"prompt-toolkit",
"pyyaml",
"regex",
]
dynamic = ["version"]
[project.urls]
Source = "https://github.com/VorpalBlade/aurutilsutils"
[project.optional-dependencies]
test = ["pytest"]
[project.scripts]
aur-smartsync = "aurutilsutils.smart_sync.__main__:main"
aur-unmanaged = "aurutilsutils.unmanaged:main"
aur-move-helper = "aurutilsutils.move_helper:main"
[tool.setuptools_scm]
write_to = "src/aurutilsutils/_version.py"