Skip to content

Commit 79d4fce

Browse files
committed
Changing build structure to simplify pypi installs
changing how package is built to include wheel
1 parent b68006e commit 79d4fce

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

bin/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
if [ "$1" == "build" ]; then
4-
rm -Rf dist build && python3 setup.py install
4+
rm -Rf dist build && python -m build
55
twine check dist/*
66
elif [ "$1" == "deploy-test" ]; then
77
twine upload --repository-url https://test.pypi.org/legacy/ dist/*

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
requires = [
3-
"setuptools>=42",
3+
"setuptools>=61.0.0",
44
"wheel"
55
]
6-
build-backend = "setuptools.build_meta"
6+
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = aws-data-mesh-utils
3-
version = 1.0.17
3+
version = 1.0.19
44
author = Ian Meyers
55
author_email = [email protected]
66
license = Apache 2.0

0 commit comments

Comments
 (0)