Skip to content

Commit

Permalink
Update metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
balloob committed Jun 13, 2022
1 parent 93ac446 commit 4d44197
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 34 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.py[cod]
venv
*.egg-info
dist
2 changes: 1 addition & 1 deletion custom_components/matter_experimental/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Matter (Experimental)",
"config_flow": true,
"documentation": "https://github.com/home-assistant-libs/python-matter-server",
"requirements": ["dacite==1.6.0", "python-matter-server==0.1.0"],
"requirements": ["python-matter-server==0.1.0"],
"iot_class": "local_push",
"version": "0.1"
}
32 changes: 29 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,41 @@
[build-system]
requires = ["setuptools~=60.5", "wheel~=0.37.1"]
requires = ["setuptools~=62.3", "wheel~=0.37.1"]
build-backend = "setuptools.build_meta"

[project]
dependencies = [
"dacite"
name = "python-matter-server"
version = "0.1.0"
license = {text = "Apache-2.0"}
description = "Python Matter WebSocket Server"
readme = "README.md"
authors = [
{name = "The Home Assistant Authors", email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Environment :: Console",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Home Automation",
]
dependencies = [
"aiohttp",
"dacite",
]

[project.scripts]
matter-server = "matter_server.server.__main__:main"

[tool.setuptools]
platforms = ["any"]
zip-safe = false
include-package-data = true

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


[tool.pylint.BASIC]
class-const-naming-style = "any"
good-names = [
Expand Down
30 changes: 0 additions & 30 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,33 +1,3 @@
[metadata]
name = python-matter-server
author = Stefan Agner & Paulus Schoutsen
description = Python Matter WebSocket Server
long-description = file: README.md
long-description-content-type = text/markdown; charset=UTF-8
version = 0.1.0
url = https://github.com/home-assistant-libs/python-matter-server
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Environment :: Console
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Home Automation
license_files = LICENSE.txt

[options.entry_points]
console_scripts =
matter-server = matter_server.server.__main__:main

[options]
packages = find:
python_requires = >= 3.9
install_requires =
aiohttp

[options.packages.find]
include=matter_server*
exclude=matter_server.vendor

[flake8]
exclude = .venv,.git,.tox,docs,venv,bin,lib,deps,build
Expand Down

0 comments on commit 4d44197

Please sign in to comment.