From 59cb824b5c0f01754a23d799292cdb24e343d07d Mon Sep 17 00:00:00 2001 From: Hellow <74311245+HeIIow2@users.noreply.github.com> Date: Sat, 17 Feb 2024 00:18:16 +0100 Subject: [PATCH] layed out the base files of the project --- configparser_toml/__init__.py | 0 pyproject.toml | 40 +++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 configparser_toml/__init__.py create mode 100644 pyproject.toml diff --git a/configparser_toml/__init__.py b/configparser_toml/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..7121d56 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,40 @@ +[build-system] +requires = ["hatchling", "hatch-requirements-txt"] +build-backend = "hatchling.build" + +[tool.hatch.build] +directory = "dist" + +[tool.hatch.build.targets.sdist] +include = ["configparser_toml/*.py"] + +[tool.hatch.build.targets.wheel] +packages = ["configparser_toml"] + +[tool.hatch.metadata] +allow-direct-references = true + + +[project] +name = "configparser-toml" +version = "0.0.1" +authors = [ + { name="Hazel", email="hazel_is_cute@proton.me" }, +] +description = "This is a lightweight python library to implement config files, inspires by https://github.com/jaraco/configparser/. Instead of .ini files this library uses .toml files." +readme = "README.md" +requires-python = ">=3.8" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", +] +dependencies = [ + "toml~=0.10.2", + "platformdirs~=3.2.0", +] + +[project.urls] +homepage = "https://gitea.elara.ws/Hazel/publish-meetups" +repository = "https://gitea.elara.ws/Hazel/publish-meetups" +issues = "https://gitea.elara.ws/Hazel/publish-meetups/issues" \ No newline at end of file