layed out the base files of the project

This commit is contained in:
Hellow 2024-02-17 00:18:16 +01:00
parent 4fee47594b
commit 59cb824b5c
2 changed files with 40 additions and 0 deletions

View File

40
pyproject.toml Normal file
View File

@ -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"