8 lines
357 B
Bash
8 lines
357 B
Bash
#!/usr/bin/zsh
|
|
# be sure to change version if needed!
|
|
fpm -s python --python-bin python3 --python-pip pip3 --python-package-name-prefix python3 \
|
|
-m '"Joel Klimont" <joel.klimont@gmail.com>' \
|
|
--license 'proprietary' \
|
|
--description 'Library for robot used in the competition' \
|
|
--after-install postinstall.sh \
|
|
-v 0.0.2 -t deb setup.py
|