From 54e099779966067e9c3be5ff18bfd4d9a6cde93c Mon Sep 17 00:00:00 2001 From: Jacob Date: Mon, 21 Apr 2025 16:43:39 -0400 Subject: [PATCH] chore: remove unnecessary `pyproject.toml` and `usage.py` --- pyproject.toml | 23 ----------------------- usage.py | 8 -------- 2 files changed, 31 deletions(-) delete mode 100644 pyproject.toml delete mode 100644 usage.py diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index 4ffbe9f..0000000 --- a/pyproject.toml +++ /dev/null @@ -1,23 +0,0 @@ -[tool.poetry] -name = "smart-home-in-rust-with-home-assistant" -version = "0.1.0" -description = "" -authors = ["J / Jacob Babich "] -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"] diff --git a/usage.py b/usage.py deleted file mode 100644 index c8b4038..0000000 --- a/usage.py +++ /dev/null @@ -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())