33 lines
731 B
Makefile
33 lines
731 B
Makefile
tests:
|
|
nosetests optunity/solvers/ -i optunity/*.py -e optunity/standalone.py --with-doctest -v
|
|
python optunity/tests/test_solvers.py
|
|
|
|
sphinx:
|
|
sphinx-apidoc --separate -o docs/api/ optunity/
|
|
|
|
msi:
|
|
python setup.py bdist --formats=msi
|
|
|
|
wininst:
|
|
python setup.py bdist --formats=wininst
|
|
|
|
html:
|
|
sphinx-build -b html docs/ docs/html/
|
|
|
|
static-notebooks:
|
|
cd notebooks && sh notebooks/generate_static_notebooks.sh
|
|
|
|
sphinx-notebooks:
|
|
cd notebooks && python notebook2sphinx.py --outputs_dir_suffix _files
|
|
cp notebooks/*.rst docs/notebooks/notebooks/
|
|
cp -r notebooks/*_files docs/notebooks/notebooks/
|
|
|
|
wheel:
|
|
python setup.py bdist_wheel --universal
|
|
|
|
sdist:
|
|
python setup.py sdist
|
|
|
|
upload:
|
|
python setup.py sdist bdist_wheel upload
|