-
Notifications
You must be signed in to change notification settings - Fork 709
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.52 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
[build-system]
requires = ["setuptools>=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "motioneye"
dynamic = ["version"]
dependencies = [
"tornado>=6.5.0",
"jinja2",
"pillow",
"pycurl",
"babel",
"boto3",
]
requires-python = ">=3.7"
authors = [
{name = "Calin Crisan", email = "ccrisan@gmail.com"},
{name = "Jean Michault"},
]
maintainers = [
{name = "MichaIng", email = "micha@dietpi.com"},
]
description = "motioneye, a multilingual web interface for motion."
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
keywords = ["motion", "video", "surveillance", "frontend"]
classifiers = [
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Video :: Capture",
]
[project.urls]
Homepage = "https://github.com/motioneye-project/motioneye"
Source = "https://github.com/motioneye-project/motioneye"
Changelog = "https://github.com/motioneye-project/motioneye/releases"
Issue = "https://github.com/motioneye-project/motioneye/issues"
[project.scripts]
meyectl = "motioneye.meyectl:main"
motioneye_init = "motioneye.motioneye_init:main"
[tool.setuptools]
packages = ["motioneye"]
include-package-data = false
[tool.setuptools.package-data]
motioneye = ["extra/*", "static/*.*", "static/*/*", "templates/*", "scripts/*", "controls/*", "handlers/*", "utils/*", "locale/*/LC_MESSAGES/*.mo"]
[tool.setuptools.dynamic]
version = {attr = "motioneye.VERSION"}
[tool.codespell]
ignore-words-list = "ot"
skip = "*.html,*.js,*.json,*.po,*.pot"