File: build.command

package info (click to toggle)
python-pymzml 2.4.7-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 28,072 kB
  • sloc: python: 6,380; pascal: 341; makefile: 233; sh: 30
file content (19 lines) | stat: -rwxr-xr-x 298 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
mkdir dist

rm -rf docs/build/*
rm -rf dist/*

# Evoke Sphinx to create html and pdf documentation
cd docs
make html
# make latexpdf
cd ..


# Creating Python packages
python setup.py sdist --formats=bztar,gztar,zip
# python3.4 setup.py sdist --formats=zip
cd dist
tar xvfj *.bz2
cd ..