PIPENV_PYPI_MIRROR
If set, tells pipenv to override PyPI index urls with a mirror.
| .PHONY: clean clean-test clean-pyc clean-build docs help | |
| clean: clean-build clean-pyc clean-test ## remove all build, test, coverage and Python artifacts | |
| clean-build: ## remove build artifacts | |
| rm -fr build/ | |
| rm -fr dist/ | |
| rm -fr .eggs/ | |
| find . -name '*.egg-info' -exec rm -fr {} + | |
| find . -name '*.egg' -exec rm -f {} + |
| <!--https://bulma.io/documentation/layout/tiles/--> | |
| <section class="info-tiles"> | |
| <div class="tile is-ancestor has-text-centered"> | |
| <div class="tile is-parent" id="chart"> | |
| </div> | |
| <div class="tile is-parent" id="chart1"> | |
| </div> | |
| </div> | |
| </section> |
| { | |
| "theme": "night", | |
| "transition": "slide", | |
| "controle": true | |
| } |
PIPENV_PYPI_MIRROR
If set, tells pipenv to override PyPI index urls with a mirror.
How to sync a forked repo
https://gist.github.com/yannvery/497ccbf26e4a71e8ad50
Github: Configuring a remote for a fork
Github: Syncing a fork
How can I know if a branch has been already merged into master?
| """A setuptools based setup module. | |
| See: | |
| https://packaging.python.org/guides/distributing-packages-using-setuptools/ | |
| https://github.com/pypa/sampleproject | |
| To add data checkout : https://docs.python.org/3.7/distutils/setupscript.html#installing-package-data | |
| """ | |
| from setuptools import setup, find_packages |
| #https://xlsxwriter.readthedocs.io/example_pandas_conditional.html | |
| writer = pd.ExcelWriter('sample.xlsx',engine='xlsxwriter') | |
| dataset.to_excel(writer,sheet_name='data',index=False) | |
| workbook = writer.book | |
| worksheet = writer.sheets['data'] | |
| #Example 4. Limiting input to a value in a dropdown list: | |
| #https://xlsxwriter.readthedocs.io/working_with_data_validation.html | |
| worksheet.data_validation('A4', {'validate': 'list', |