40 lines
1.1 KiB
TOML
40 lines
1.1 KiB
TOML
|
[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"
|