-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
65 lines (58 loc) · 1.51 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
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "photoarch"
version = "0.1.0"
description = "AI-powered photo organizer by date, location and content."
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{name = "Christian Kadluba"}
]
requires-python = ">=3.14"
keywords = ["photo", "organizer", "exif", "ai", "archiving", "cli"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
"Topic :: Multimedia :: Graphics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
dependencies = [
"accelerate",
"open-clip-torch",
"Pillow",
"torch",
"torchvision",
"transformers",
"sentence-transformers",
"deep-translator",
"requests",
"colorlog",
"geopy",
"dataclasses-json",
"numpy"
]
[project.optional-dependencies]
dev = [
"pytest",
"black",
"ruff"
]
[project.scripts]
photoarch = "photoarch.main:cli"
[project.urls]
Homepage = "https://github.com/ckadluba/photoarch"
Repository = "https://github.com/ckadluba/photoarch"
Issues = "https://github.com/ckadluba/photoarch/issues"
[tool.setuptools.packages.find]
include = ["photoarch*"]
[tool.setuptools.package-data]
photoarch = ["py.typed"]