Skip to content
This repository has been archived by the owner on Jun 11, 2023. It is now read-only.

Commit

Permalink
Update config
Browse files Browse the repository at this point in the history
  • Loading branch information
xymy committed Mar 11, 2020
1 parent 2fd4f94 commit a874f90
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@
/venv/
/*.egg-info/
__pycache__/
/build.*
11 changes: 11 additions & 0 deletions build.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import os

commands = """
python setup.py clean --all
python setup.py build sdist bdist_wheel
"""

for command in commands.splitlines():
if command.isspace():
continue
os.system(command)

0 comments on commit a874f90

Please sign in to comment.