2 Commits
0.6.3 ... 0.6.5

Author SHA1 Message Date
78ac274e31 Include pyproject.toml 2023-04-26 15:32:06 -07:00
05c2196fcf Update minimum requirements for typing-extensions 2023-04-26 15:04:57 -07:00
3 changed files with 8 additions and 3 deletions

View File

@ -33,7 +33,7 @@ jobs:
- name: Build and install wheel
run: |
python -m build
tox run -m build
python -m pip install dist/*.whl
- name: tox

6
pyproject.toml Normal file
View File

@ -0,0 +1,6 @@
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
local_scheme = "no-local-version"

View File

@ -1,6 +1,5 @@
[metadata]
name = settngs
version = 0.6.3
description = A library for managing settings
long_description = file: README.md
long_description_content_type = text/markdown
@ -19,7 +18,7 @@ classifiers =
[options]
packages = find:
install_requires =
typing-extensions;python_version < '3.11'
typing-extensions>=4.3.0;python_version < '3.11'
python_requires = >=3.8
include_package_data = True