-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpyproject.toml
64 lines (59 loc) · 1.68 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
[tool.poetry]
name = "amplipi"
version = "0.4.5"
description = "A Pi-based whole house audio controller"
authors = [
"Lincoln Lorenz <lincoln@micro-nova.com>",
"Michael Lohrer <michael@micro-nova.com>",
"Jeremy Bowers <jeremy@micro-nova.com>",
"Mark Bowers <mark@micro-nova.com>",
"Jason Gorski <jason@micro-nova.com>",
]
maintainers = ["Lincoln Lorenz <lincoln@micro-nova.com>"]
readme = "README.md"
homepage = "http://www.AmpliPi.com"
repository = "http://github.com/micro-nova/AmpliPi"
license = "GPL-3.0-or-later"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Multimedia :: Sound/Audio :: Players",
]
include = [
"*.md",
"requirements.txt",
"AUTHORS",
"config/**",
"debs/**/*",
"fw/*.sh", # no need to add full source tree
"fw/bin/*",
"hw/**",
"scripts/*",
"streams/**/*",
"bin/**",
"docs/**",
"web/dist",
"web/static",
"web/templates"
]
exclude = [
"scripts/deploy", "scripts/bootstrap_pi" # only support development
]
[tool.poetry.scripts]
amplipi_install_deps = 'amplipi.scripts:configure'
[tool.poetry.urls]
"Issues" = "https://github.com/micro-nova/AmpliPi/issues"
[tool.poetry.dev-dependencies]
pytest = "^6.2.2"
[tool.pylint.'MESSAGES CONTROL']
extension-pkg-whitelist = "pydantic"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"