Skip to content

Commit fad6ba8

Browse files
committed
Misc
1 parent 91e9cbb commit fad6ba8

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,3 @@ MANIFEST
1414
# Hidden files.
1515
.*
1616
!.gitignore
17-
18-
# Project files.
19-
*.sublime-project
20-
*.sublime-workspace

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ include *.rst
55
include LICENSE
66
recursive-include doc *
77
recursive-include tests *
8+
prune dev
89
prune doc/build
910
global-exclude *.pyc

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This Makefile is used to manage development and distribution.
33
#
44
# Created: 2022-08-01
5-
# Updated: 2022-08-02
5+
# Updated: 2022-08-31
66
#
77

88
.PHONY: build create-venv help prebuild publish test update-venv
@@ -68,13 +68,13 @@ dev-venv-install:
6868

6969
.PHONY: dist-build dist-prebuild dist-publish
7070

71-
dist-build: prebuild
71+
dist-build: dist-prebuild
7272
find ./dist -type f -delete
7373
${VENV} python -m build
7474

7575
dist-prebuild:
7676
${VENV} python ./prebuild.py
7777

78-
dist-publish: build
78+
dist-publish: dist-build
7979
${VENV} twine check ./dist/*
80-
${VENV} twine upload --skip-existing ./dist/*
80+
${VENV} twine upload -r sqlparams --skip-existing ./dist/*

0 commit comments

Comments
 (0)