-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
42 lines (39 loc) · 1.19 KB
/
setup.cfg
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
[metadata]
DEBUG=True
license = Apache License 2.0
license_file = LICENSE.md
platforms = any
description = Open-source platform for photo management running on Python 3.
long_description = file: README.md
keywords = photos, self-hosted, google-photos, apple-photos, object-detection, face-recognition, face-detection
classifier =
Intended Audience :: End Users/Desktop
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Scientific/Engineering :: Atmospheric Science
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Programming Language :: Python :: 3.10
[flake8]
exclude = venv,.git,build
doctests = True
# To work with Black
# E501: line too long
# W503: Line break occurred before a binary operator
# W504 line break after binary operator
ignore =
E501,
E722,
W503,
W504
[mypy]
python_version = 3.10
show_error_codes = true
ignore_errors = true
follow_imports = silent
ignore_missing_imports = true
warn_incomplete_stub = true
warn_redundant_casts = true
warn_unused_configs = true