9 lines
116 B
Bash
Executable File
9 lines
116 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
echo "Building wheel..."
|
|
python setup.py bdist_wheel
|
|
|
|
echo "Building egg..."
|
|
python setup.py sdist
|
|
|