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