mirror of
https://github.com/domainaware/parsedmarc.git
synced 2026-05-26 05:35:24 +00:00
13 lines
292 B
Bash
Executable File
13 lines
292 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
. ~/venv/domainaware/bin/activate
|
|
pip install -U -r requirements.txt
|
|
rstcheck README.rst
|
|
cd docs && make html && cp -r _build/html/* ../../parsedmarc-docs/
|
|
cd ..
|
|
rm -rf dist/ build/
|
|
flake8 parsedmarc.py
|
|
flake8 tests.py
|
|
python3 setup.py sdist
|
|
python3 setup.py bdist_wheel
|