-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.18 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "badger-config-handler"
version = "0.3.1"
description = "Config handler for code-declared and file-defined settings."
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
keywords = ["settings handler", "config handler", "json", "yaml"]
authors = [
{name = "pidi3000"},
]
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
]
# dependencies = [
# "json",
# ]
# dynamic = ["version", "description"]
[project.optional-dependencies]
yaml = [
"pyyaml",
]
dev = [
"build",
"twine",
"pytest",
"pytest-dependency",
]
[project.urls]
Repository = "https://github.com/pidi3000/Badger_Config_Handler"