-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
74 lines (62 loc) · 1.85 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
65
66
67
68
69
70
71
72
73
74
[project]
name = "platypush"
description = "A general-purpose framework for automation"
dynamic = ["version", "dependencies", "optional-dependencies"]
authors = [
{name = "Fabio Manganiello", email = "fabio@manganiello.tech"},
]
classifiers=[
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
]
readme = "README.md"
requires-python = '>= 3.6'
keywords = [
"home-automation", "automation", "iot", "mqtt", "websockets", "redis", "dashboard", "notifications"
]
[tool.setuptools.dynamic]
version = {attr = "version.__version__"}
dependencies = {file = "requirements.txt"}
[project.urls]
homepage = "https://platypush.tech"
repository = "https://git.platypush.tech/platypush/platypush"
documentation = "https://docs.platypush.tech"
blog = "https://blog.platypush.tech"
[project.scripts]
platypush = 'platypush:main'
platydock = 'platypush.platydock:main'
platyvenv = 'platypush.platyvenv:main'
[tool.flit.sdist]
include = [
'platypush/backend/http/webapp/dist/*',
'platypush/components.json.gz',
'platypush/config/*.yaml',
'platypush/install/**',
'platypush/install/docker/*',
'platypush/install/requirements/*',
'platypush/install/scripts/*',
'platypush/install/scripts/**/*',
'platypush/migrations/alembic.ini',
'platypush/migrations/alembic/*',
'platypush/migrations/alembic/**/*',
'platypush/plugins/http/webpage/mercury-parser.js'
]
[tool.bumpversion]
current_version = "1.3.1"
commit = true
tag = true
[tool.black]
skip-string-normalization = true
skip-numeric-underscore-normalization = true
[tool.pytest.ini_options]
filterwarnings = [
'ignore:There is no current event loop:DeprecationWarning',
]
[[tool.bumpversion.files]]
filename = "CHANGELOG.md"
search = "Unreleased"
[[tool.bumpversion.files]]
filename = "platypush/__init__.py"
[[tool.bumpversion.files]]
filename = "version.py"