-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
74 lines (68 loc) · 2.09 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[project]
name = "synophotos"
authors = [{ name = "fortysix2ahead", email = "[email protected]" }]
maintainers = [{ name = "fortysix2ahead", email = "[email protected]" }]
version = "0.2.3"
description = "Command Line Interface Client for Synology Photos"
readme = "README.md"
keywords = ["synology", "photos", "terminal", "cli", "command line"]
license = {text = "MIT"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.9"
dependencies = [
'attrs >= 24.2,< 25.2',
'cattrs ~= 24.1.2',
'click ~= 8.1.7',
'dynaconf~=3.2.5',
'exif ~= 1.6.0',
'fs ~= 2.4.16',
'more-itertools >= 10.3.0',
'PyYAML ~= 6.0.2',
'requests ~= 2.32.3',
'rich ~= 13.9.4',
'typing_extensions ~= 4.12.2',
]
[project.optional-dependencies]
dev = [
"bumpver~=2024.1130",
"flit~=3.10.1",
"mkdocs~=1.6.1",
"mkdocs-click~=0.8.1",
"mkdocs-material~=9.5.44",
"setuptools>=75.5,<75.9"
]
[project.urls]
"Homepage" = "https://github.com/fortysix2ahead/synophotos/"
"Source Code" = "https://github.com/fortysix2ahead/synophotos/"
"Issue Tracker" = "https://github.com/fortysix2ahead/synophotos/issues/"
Documentation = "https://synophotos.readthedocs.io/"
Source = "https://github.com/fortysix2ahead/synophotos/"
[project.scripts]
synophotos = "synophotos.cli:main"
# [build-system]
# requires = ["setuptools>=61.0.0", "wheel"]
# build-backend = "setuptools.build_meta"
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.bumpver]
current_version = "0.2.3"
version_pattern = "MAJOR.MINOR.PATCH[-INC0]"
commit_message = "Increased version from {old_version} to {new_version}"
tag_message = "rel-{new_version}"
tag_scope = "default"
pre_commit_hook = ""
post_commit_hook = ""
commit = false
tag = false
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['version = "{version}"']
# "setup.py" = ["{version}", "{pep440_version}", ]
# "README.md" = ["{version}", "{pep440_version}",]
"synophotos/__init__.py" = [ '{version}' ]