-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (34 loc) · 976 Bytes
/
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
[project]
name = "appsettings2"
version = "0.0.0"
description = "Unifies configuration sources into a Configuration object that can be bound to complex types, or accessed directly for configuration data."
authors = [
{ name="Shaun Wilson", email="mrshaunwilson@msn.com" }
]
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries"
]
requires-python = ">=3.11"
dependencies = [
"pyyaml>=6.0.2"
]
[project.urls]
Documentation = "https://appsettings2.readthedocs.io/"
Homepage = "https://github.com/wilson0x4d/appsettings2"
Repository = "https://github.com/wilson0x4d/appsettings2.git"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = [
"docs",
"src",
"src.*",
"tests",
"tests.*"
]