-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (42 loc) · 1.32 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
36
37
38
39
40
41
42
43
44
45
46
47
# ------------------------------------------------------------------------------
# Project : Configurator / \
# Filename: configurator | () |
# Date : 01/04/2023 | |
# Author : cyclopticnerve | \____/ |
# License : WTFPLv2 \ /
# ------------------------------------------------------------------------------
[build-system]
requires = [
"setuptools>=59.6.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "configurator"
version = "0.1.0"
description = "A small Python module that makes working with json settings files easier"
readme = "README.md"
authors = [
{name = "cyclopticnerve", email = "cyclopticnerve@gmail.com"}
]
license = {file = "LICENSE"}
classifiers = [
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = [
"config",
"settings",
"json",
"dictionary",
"configuration",
"dict"
]
dependencies = [
]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/cyclopticnerve/Configurator"
# -)