Skip to content

Commit 90c64b9

Browse files
committed
improving release script
1 parent 0518cfd commit 90c64b9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
22
rm -rf ./build/*
3-
rm ./dist/*
3+
rm -rf ./dist/*
44
python setup.py sdist bdist_wheel
55
twine upload dist/*

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
python_requires=">=3.7.0",
3131
url="https://github.com/piccolo-orm/piccolo",
3232
packages=find_packages(exclude=("tests",)),
33-
package_data={"": ["templates/"], "piccolo": ["py.typed"]},
33+
package_data={"": ["templates/*"], "piccolo": ["py.typed"]},
3434
install_requires=REQUIREMENTS,
3535
license="MIT",
3636
classifiers=[

0 commit comments

Comments
 (0)