-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (31 loc) · 1.03 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "Simple-TOML-Configurator"
version = "1.3.0"
license = {text = "MIT License"}
authors = [{name = "GilbN", email = "[email protected]"}]
description = "A simple TOML configurator for Python"
readme = "README.md"
requires-python = ">=3.7.0"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
keywords = ["configuration", "TOML", "settings", "management", "Python"]
dependencies = [
"tomlkit>=0.12.1",
"python-dateutil>=2.8.2"
]
[project.urls]
Homepage = "https://github.com/GilbN/Simple-TOML-Configurator"
[project.optional-dependencies]
dev = ["pytest","pytest-cov","pytest-mock"]
[tool.setuptools.dynamic]
version = {attr = "simple_toml_configurator.__version__"}