From 26c46c680b222c33d23536f0b5b5054a36989463 Mon Sep 17 00:00:00 2001 From: Artur Borecki Date: Tue, 24 Sep 2024 15:24:48 +0200 Subject: [PATCH] build(pyproject.toml): remove pyproject.toml --- pyproject.toml | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index c2fb4bd..0000000 --- a/pyproject.toml +++ /dev/null @@ -1,39 +0,0 @@ -[build-system] -requires = ["hatchling"] -build-backend = "hatchling.build" - -[project] -name = "" -dynamic = ["version"] -depedencies = [ - "...", -] -requires-python = ">=3.9" -authors = [ - {name="Artur Borecki", email="me@pufereq.pl"} -] -description = "..." -readme = "README.md" -keywords = ["..."] -classifiers = [ - "Programming Language :: Python :: 3", - "...", -] - -[project.urls] -Homepage = "..." -Repository = "..." -"Bug Tracker" = "..." -Changelog = "..." - -[project.optional-dependencies] -dev = [ - "hatchling", - "pytest", - "pytest-cov", - "black", -] - -[tool.hatch.version] -path = ".../__init__.py" -pattern = "__version__ = \"(?P.*)\""