layed out the base files of the project
This commit is contained in:
parent
4fee47594b
commit
59cb824b5c
0
configparser_toml/__init__.py
Normal file
0
configparser_toml/__init__.py
Normal file
40
pyproject.toml
Normal file
40
pyproject.toml
Normal 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"
|
Loading…
Reference in New Issue
Block a user