File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1- include LICENSE
1+ include LICENSE requirements.txt
Original file line number Diff line number Diff line change 1010# coverage For running test coverage
1111# pylint For running linting on code
1212# setuptools For creating distributions
13- # twine For checking and publishing distributions
13+ # build For creating distributions
14+ # twine For checking and publishing distributions
1415#
1516# The following command line utilities are required:
1617# cloc For counting lines of code
@@ -98,13 +99,13 @@ summary:
9899# Create a distribution build of the module
99100dist :
100101 @printf " \n\nCREATING DISTRIBUTION BUILD...\n"
101- @python setup.py sdist bdist_wheel
102+ @python -m build
102103 @printf " \n\nDISTRIBUTION BUILD CREATED\n\n\n"
103104
104105# Check a distribution build using twine
105106check-dist :
106107 @printf " \n\nCHECKING DISTRIBUTION BUILD:\n"
107- twine check dist/*
108+ @ twine check dist/*
108109 @printf " \n"
109110
110111# Clear out distribution files
You can’t perform that action at this time.
0 commit comments