-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 1.01 KB
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
[build-system]
requires = ["setuptools ~= 68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "rawsync"
version = "2.1.0"
description = "Cross platform CLI tool for synchronizing raw and jpeg photos between two folders with removing pairless images."
readme = "README.md"
requires-python = ">=3.7"
license = { text = "MIT License" }
keywords = ["cli", "photo", "camera", "file", "jpeg", "raw", "images"]
authors = [
{ name = "Bence Liszkai" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Topic :: Multimedia :: Graphics",
"Topic :: Utilities",
"Topic :: File Formats"
]
dependencies = [
"Send2Trash~=1.8.0"
]
[project.urls]
Repository = "https://github.com/liszi/rawsync"
[project.scripts]
rawsync = "main:raw_sync"
rawpack = "main:raw_pack"