2022-12-14 19:42:24 -08:00
|
|
|
[metadata]
|
|
|
|
name = settngs
|
2023-02-20 02:07:35 -08:00
|
|
|
version = 0.6.2
|
2022-12-14 19:42:24 -08:00
|
|
|
description = A library for managing settings
|
|
|
|
long_description = file: README.md
|
|
|
|
long_description_content_type = text/markdown
|
|
|
|
url = https://github.com/lordwelch/settngs
|
|
|
|
author = Timmy Welch
|
|
|
|
author_email = timmy@narnian.us
|
|
|
|
license = MIT
|
|
|
|
license_files = LICENSE
|
|
|
|
classifiers =
|
|
|
|
License :: OSI Approved :: MIT License
|
|
|
|
Programming Language :: Python :: 3
|
|
|
|
Programming Language :: Python :: 3 :: Only
|
|
|
|
Programming Language :: Python :: Implementation :: CPython
|
|
|
|
Programming Language :: Python :: Implementation :: PyPy
|
|
|
|
|
|
|
|
[options]
|
|
|
|
py_modules = settngs
|
2022-12-15 18:53:29 -08:00
|
|
|
install_requires =
|
|
|
|
typing-extensions;python_version < '3.11'
|
2022-12-14 19:42:24 -08:00
|
|
|
python_requires = >=3.8
|
|
|
|
|
|
|
|
[options.packages.find]
|
|
|
|
exclude =
|
|
|
|
tests*
|
|
|
|
testing*
|
|
|
|
|
|
|
|
[coverage:run]
|
|
|
|
plugins = covdefaults
|
|
|
|
|
|
|
|
[coverage:report]
|
|
|
|
fail_under = 95
|
|
|
|
|
|
|
|
[mypy]
|
|
|
|
check_untyped_defs = true
|
|
|
|
disallow_any_generics = true
|
|
|
|
disallow_incomplete_defs = true
|
|
|
|
disallow_untyped_defs = true
|
|
|
|
no_implicit_optional = true
|
|
|
|
warn_redundant_casts = true
|
|
|
|
warn_unused_ignores = true
|
|
|
|
|
|
|
|
[mypy-testing.*]
|
|
|
|
disallow_untyped_defs = false
|
|
|
|
|
|
|
|
[mypy-tests.*]
|
|
|
|
disallow_untyped_defs = false
|