Skip to content

Commit

Permalink
Merge API docs and Python 3.7 drop into master
Browse files Browse the repository at this point in the history
  • Loading branch information
gnn committed Jan 17, 2019
2 parents e1a93c4 + be5d58b commit 7a7f0d5
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 18 deletions.
46 changes: 46 additions & 0 deletions docs/reference/oemof.tabular.datapackage.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
oemof.tabular.datapackage package
=================================

Submodules
----------

oemof.tabular.datapackage.aggregation module
--------------------------------------------

.. automodule:: oemof.tabular.datapackage.aggregation
:members:
:undoc-members:
:show-inheritance:

oemof.tabular.datapackage.building module
-----------------------------------------

.. automodule:: oemof.tabular.datapackage.building
:members:
:undoc-members:
:show-inheritance:

oemof.tabular.datapackage.processing module
-------------------------------------------

.. automodule:: oemof.tabular.datapackage.processing
:members:
:undoc-members:
:show-inheritance:

oemof.tabular.datapackage.reading module
----------------------------------------

.. automodule:: oemof.tabular.datapackage.reading
:members:
:undoc-members:
:show-inheritance:


Module contents
---------------

.. automodule:: oemof.tabular.datapackage
:members:
:undoc-members:
:show-inheritance:
22 changes: 22 additions & 0 deletions docs/reference/oemof.tabular.tools.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
oemof.tabular.tools package
===========================

Submodules
----------

oemof.tabular.tools.geometry module
-----------------------------------

.. automodule:: oemof.tabular.tools.geometry
:members:
:undoc-members:
:show-inheritance:


Module contents
---------------

.. automodule:: oemof.tabular.tools
:members:
:undoc-members:
:show-inheritance:
19 changes: 3 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,7 @@ def read(*names, **kwargs):
"oemof==0.2.4.dev0",
"pandas>=0.22",
"paramiko",
"pyproj==1.9.5.1.dev0"
if sys.version_info.major >= 3 and sys.version_info.minor >= 7
else "pyproj",
"pyproj",
"pyshp",
"scipy",
"shapely",
Expand All @@ -84,21 +82,10 @@ def read(*names, **kwargs):
# 'rst': ['docutils>=0.11'],
# ':python_version=="2.6"': ['argparse'],
},
dependency_links=(
[
(
"git+https://git@github.com/gnn/pyproj.git"
"@69a26ce46634749f602518a375849999cb5e41e0"
"#egg=pyproj-1.9.5.1.dev0"
)
]
if sys.version_info.major >= 3 and sys.version_info.minor >= 7
else []
)
+ [
dependency_links=[
(
"git+https://git@github.com/oemof/oemof.git"
"@features/move-datapackage-reader-into-standalone-package"
"@releases/v0_3_0"
"#egg=oemof-0.2.4.dev0"
)
],
Expand Down
2 changes: 0 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -159,5 +159,3 @@ ignore_errors = True
basepython = {env:TOXPYTHON:python3.7}
ignore_errors = True



0 comments on commit 7a7f0d5

Please sign in to comment.