Skip to content

Commit

Permalink
Merge branch 'Release/v0.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
joroeder committed Jul 9, 2021
2 parents d8d0127 + 2d55515 commit 9449bac
Show file tree
Hide file tree
Showing 31 changed files with 1,447 additions and 41 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ _build
jupyter_notebooks
*/import_export_plot/data_csv_output/
*/import_osmnx/data/
cache/
23 changes: 21 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
|badge_travis| |badge_coverage|
|badge_travis| |badge_coverage| |readthedocs| |zenodo|

~~~~
DHNx
Expand Down Expand Up @@ -28,7 +28,7 @@ Install the developer version of DHNx by cloning DHNx to your computer and runni

.. code:: bash
pip install -e DHNx
pip install -e <path to DHNx>
in your virtualenv.

Expand All @@ -53,6 +53,18 @@ Everybody is welcome to contribute to the development of DHNx. The `developer
guidelines of oemof <https://oemof.readthedocs.io/en/stable/developing_oemof.html>`_
are in most parts equally applicable to DHNx.


Citing
======

We use the zenodo project to get a DOI for each version.
`Search zenodo for the right citation of your DHNx version <https://zenodo.org/search?page=1&size=20&q=dhnx>`_.

If you want to refer specifically to the district heating network optimization
part of DHNx, you can also cite
`https://doi.org/10.5278/ijsepm.6248 <https://doi.org/10.5278/ijsepm.6248>`_.


License
=======

Expand Down Expand Up @@ -86,3 +98,10 @@ SOFTWARE.
.. |badge_travis| image:: https://api.travis-ci.org/oemof/DHNx.svg?branch=dev
:target: https://travis-ci.org/oemof/DHNx
:alt: Build status

.. |zenodo| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.4147049.svg
:target: https://doi.org/10.5281/zenodo.4147049

.. |readthedocs| image:: https://readthedocs.org/projects/dhnx/badge/?version=latest
:target: https://dhnx.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.1"
__version__ = "0.0.2"
2 changes: 1 addition & 1 deletion dhnx/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.0.1"
__version__ = "0.0.2"

from . import input_output
from . import network
Expand Down
2 changes: 2 additions & 0 deletions dhnx/gistools/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import connect_points
from . import geometry_operations
Loading

0 comments on commit 9449bac

Please sign in to comment.