Metadata-Version: 2.0
Name: GeologicalToolbox
Version: 0.1.2b1
Summary: A python module for processing and storing geological data.
Home-page: https://github.com/stdonn/GeologicalToolbox
Author: Stephan Donndorf
Author-email: stephan@donndorf.info
License: MIT
Description-Content-Type: UNKNOWN
Keywords: Geology Modelling SQLAlchemy
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Other Audience
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Natural Language :: English
Classifier: Topic :: Database :: Front-Ends
Classifier: Topic :: Documentation :: Sphinx
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=2.6, !=3.0.*, !=3.1.*, !=3.2.*
Requires-Dist: SQLAlchemy (>=1.2)
Requires-Dist: typing
Provides-Extra: dev
Requires-Dist: Sphinx; extra == 'dev'
Requires-Dist: sphinxjp.themes.basicstrap; extra == 'dev'

# Geological Toolbox

## General Description

This toolbox provides basic functionality for the storage and processing of geological data in a database. The toolbox can process point, line (and so also polygons as closed lines) and well data.

## Installation

You can install the GeologicalToolbox via pip from the [Python Package Index (PyPI)](https://pypi.org/):

```
pip install GeologicalToolbox
```

For further information on installing packages with pip and PyPI see [Installing Packages](https://packaging.python.org/tutorials/installing-packages/).

## System Requirements

This toolbox was tested with Python version 2.7 and 3.6.

This toolbox requires [SQLAlchemy](https://www.sqlalchemy.org/) and [typing](https://pypi.org/project/typing/). The documentation uses [Sphinx](https://pypi.org/project/Sphinx/) and the [basicstrap template package](https://pypi.org/project/sphinxjp.themes.basicstrap/). More information to configure the documentation theme can be found on the [theme homepage](https://pythonhosted.org/sphinxjp.themes.basicstrap/index.html).


You can install all of the requirements via pip:

```
pip install -r requirements.txt
```

