Skip to content

Commit 3d8d593

Browse files
authored
Merge pull request #376 from dimbleby/build-and-publish-wheel
build and publish wheel
2 parents 67141c2 + fd5b792 commit 3d8d593

File tree

4 files changed

+29
-14
lines changed

4 files changed

+29
-14
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
publish: clean
2-
python setup.py sdist
2+
python -m build
33
twine upload dist/*
44

55
clean:
66
rm -vrf ./build ./dist ./*.egg-info
77
find . -name '*.pyc' -delete
8-
find . -name '*.tgz' -delete
8+
find . -name '*.tgz' -delete

Pipfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ urllib3 = ">=2.1.0"
1414
intuit-oauth = "==1.2.6"
1515
requests = ">=2.31.0"
1616
requests_oauthlib = ">=1.3.1"
17-
setuptools = "*"
17+
build = "*"

Pipfile.lock

+26-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ def read(*parts):
3030
},
3131

3232
install_requires=[
33-
'setuptools',
3433
'intuit-oauth==1.2.6',
3534
'requests_oauthlib>=1.3.1',
3635
'requests>=2.31.0',

0 commit comments

Comments
 (0)