chore: remove unnecessary pyproject.toml and usage.py

This commit is contained in:
2025-04-21 16:43:39 -04:00
parent a97cf73061
commit 54e0997799
2 changed files with 0 additions and 31 deletions

View File

@@ -1,23 +0,0 @@
[tool.poetry]
name = "smart-home-in-rust-with-home-assistant"
version = "0.1.0"
description = ""
authors = ["J / Jacob Babich <jacobbabichpublic+git@gmail.com>"]
readme = "README.md"
[build-system]
requires = ["maturin>=1.2,<2.0"]
build-backend = "maturin"
[project]
name = "smart-home-in-rust-with-home-assistant"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[tool.maturin]
features = ["pyo3/extension-module"]

View File

@@ -1,8 +0,0 @@
from asyncio import run
async def smart_home_in_rust_with_home_assistant_main():
from smart_home_in_rust_with_home_assistant import main
await main()
run(smart_home_in_rust_with_home_assistant_main())