-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
47 lines (39 loc) · 1.2 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
47
[project]
name = "annexremote"
authors = [
{name = "Silvio Ankermann", email = "[email protected]"},
]
dynamic = ["version"]
license = { text = "GPL-3.0-only" }
description = "git annex special remotes made easy"
readme = "README.md"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
keywords = ["git-annex", "remote"]
[project.urls]
Documentation = "https://lykos153.github.io/AnnexRemote"
Source = "https://github.com/Lykos153/AnnexRemote"
[project.optional-dependencies]
tests = ['coverage', 'pytest']
doc = ["sphinx"]
[build-system]
requires = [
"setuptools>=41",
"wheel",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "annexremote/_version.py"
fallback_version = "0.0.0"
[tool.setuptools]
packages = ["annexremote"]