1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
Contributing
============
All the contributions are welcome! Please open [an
issue](https://github.com/theskumar/python-dotenv/issues/new) or send us
a pull request.
Executing the tests:
$ pip install -r requirements.txt
$ pip install -e .
$ flake8
$ pytest
or with [tox](https://pypi.org/project/tox/) installed:
$ tox
Documentation is published with [mkdocs]():
```shell
$ pip install -r requirements-docs.txt
$ pip install -e .
$ mkdocs serve
```
Open http://127.0.0.1:8000/ to view the documentation locally.
|