From 0b37b18d9a655b3bcb8f45bc3d4c8bad3b145913 Mon Sep 17 00:00:00 2001 From: Gregor von Laszewski Date: Fri, 15 Dec 2023 23:53:02 -0500 Subject: [PATCH] update toml --- makefile-pypi.mk | 10 +++++++++- pyproject.toml | 4 +--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/makefile-pypi.mk b/makefile-pypi.mk index 6cd2741..e4a16e9 100644 --- a/makefile-pypi.mk +++ b/makefile-pypi.mk @@ -9,13 +9,21 @@ dist: python setup.py sdist bdist_wheel twine check dist/* +ndist: + pip install -q build + python -m build + +npatch: + python -m twine upload --repository testpypi dist/* + patch: clean twine $(call banner, "patch") pip install -r requirements-dev.txt cms bumpversion patch @VERSION=$$(cat VERSION); \ git commit -m "bump version ${VERSION}" .; git push - python setup.py sdist bdist_wheel + pip install -q build + python -m build git push origin main --tags twine check dist/* twine upload --repository testpypi dist/* diff --git a/pyproject.toml b/pyproject.toml index 2a367b5..576bfc8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,3 @@ -# pyproject.toml - [build-system] build-backend = "setuptools.build_meta" requires = [ @@ -70,4 +68,4 @@ dependencies = [ [project.urls] "Documentation" = "https://github.com/cloudmesh/cloudmesh-common" [tool.setuptools.packages.find] -exclude = ["decrecated", "tests", "tests.*", "examples"] +exclude = ["deprecated", "deprecated.**", "tests", "tests.*", "examples"]