Skip to content

Commit 4d44197

Browse files
committed
Update metadata
1 parent 93ac446 commit 4d44197

File tree

4 files changed

+31
-34
lines changed

4 files changed

+31
-34
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
*.py[cod]
22
venv
33
*.egg-info
4+
dist

custom_components/matter_experimental/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "Matter (Experimental)",
44
"config_flow": true,
55
"documentation": "https://github.com/home-assistant-libs/python-matter-server",
6-
"requirements": ["dacite==1.6.0", "python-matter-server==0.1.0"],
6+
"requirements": ["python-matter-server==0.1.0"],
77
"iot_class": "local_push",
88
"version": "0.1"
99
}

pyproject.toml

+29-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,41 @@
11
[build-system]
2-
requires = ["setuptools~=60.5", "wheel~=0.37.1"]
2+
requires = ["setuptools~=62.3", "wheel~=0.37.1"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
dependencies = [
7-
"dacite"
6+
name = "python-matter-server"
7+
version = "0.1.0"
8+
license = {text = "Apache-2.0"}
9+
description = "Python Matter WebSocket Server"
10+
readme = "README.md"
11+
authors = [
12+
{name = "The Home Assistant Authors", email = "hello@home-assistant.io"}
813
]
14+
classifiers = [
15+
"Development Status :: 3 - Alpha",
16+
"Intended Audience :: Developers",
17+
"Environment :: Console",
18+
"Programming Language :: Python :: 3.9",
19+
"Programming Language :: Python :: 3.10",
20+
"Topic :: Home Automation",
21+
]
22+
dependencies = [
23+
"aiohttp",
24+
"dacite",
25+
]
26+
27+
[project.scripts]
28+
matter-server = "matter_server.server.__main__:main"
29+
30+
[tool.setuptools]
31+
platforms = ["any"]
32+
zip-safe = false
33+
include-package-data = true
934

1035
[tool.setuptools.packages.find]
1136
include = ["matter_server*"]
1237

38+
1339
[tool.pylint.BASIC]
1440
class-const-naming-style = "any"
1541
good-names = [

setup.cfg

-30
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,3 @@
1-
[metadata]
2-
name = python-matter-server
3-
author = Stefan Agner & Paulus Schoutsen
4-
description = Python Matter WebSocket Server
5-
long-description = file: README.md
6-
long-description-content-type = text/markdown; charset=UTF-8
7-
version = 0.1.0
8-
url = https://github.com/home-assistant-libs/python-matter-server
9-
classifiers =
10-
Development Status :: 3 - Alpha
11-
Intended Audience :: Developers
12-
Environment :: Console
13-
Programming Language :: Python :: 3.9
14-
Programming Language :: Python :: 3.10
15-
Topic :: Home Automation
16-
license_files = LICENSE.txt
17-
18-
[options.entry_points]
19-
console_scripts =
20-
matter-server = matter_server.server.__main__:main
21-
22-
[options]
23-
packages = find:
24-
python_requires = >= 3.9
25-
install_requires =
26-
aiohttp
27-
28-
[options.packages.find]
29-
include=matter_server*
30-
exclude=matter_server.vendor
311

322
[flake8]
333
exclude = .venv,.git,.tox,docs,venv,bin,lib,deps,build

0 commit comments

Comments
 (0)