Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include LICENSE
include LICENSE requirements.txt
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
# coverage For running test coverage
# pylint For running linting on code
# setuptools For creating distributions
# twine For checking and publishing distributions
# build For creating distributions
# twine For checking and publishing distributions
#
# The following command line utilities are required:
# cloc For counting lines of code
Expand Down Expand Up @@ -98,13 +99,13 @@ summary:
# Create a distribution build of the module
dist:
@printf "\n\nCREATING DISTRIBUTION BUILD...\n"
@python setup.py sdist bdist_wheel
@python -m build
@printf "\n\nDISTRIBUTION BUILD CREATED\n\n\n"

# Check a distribution build using twine
check-dist:
@printf "\n\nCHECKING DISTRIBUTION BUILD:\n"
twine check dist/*
@twine check dist/*
@printf "\n"

# Clear out distribution files
Expand Down