-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (52 loc) · 1.27 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
50
51
52
53
54
55
56
57
58
[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."
keywords = ["appsettings", "configuration"]
authors = [
{ name="Shaun Wilson", email="mrshaunwilson@msn.com" }
]
readme = "README.md"
license = "MIT"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python"
]
requires-python = ">=3.11"
dependencies = [
"pyyaml>=6.0.3"
]
[project.optional-dependencies]
dev = [
"coverage",
"flake8",
"flake8-pyproject",
"mypy",
"pep8-naming",
"punit (>=1.12.5)",
"twine",
"types-PyYAML"
]
[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]
where = ["src"]
exclude = [
"docs",
"tests",
"tests.*"
]
[tool.setuptools.package-data]
"appsettings2" = ["py.typed", "SKILL.md"]
[tool.flake8]
max-line-length = 120
ignore = ["D100","E501"]
per-file-ignores = [
"tests/*.py:D012,E306",
]