Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# pymake Installation

To install a stable version from PyPI:

```
pip install mfpymake
```

To install pymake directly from the git repository type:

```
Expand All @@ -9,4 +15,4 @@ pip install https://github.com/modflowpy/pymake/zipball/master
To update your version of pymake with the latest from the git repository type:

```
pip install https://github.com/modflowpy/pymake/zipball/master --upgrade
pip install https://github.com/modflowpy/pymake/zipball/master --upgrade
9 changes: 3 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ version = attr: pymake.config.__version__
description = pymake is a Python package to compile MODFLOW-based models.
long_description = file: README.md
long_description_content_type = text/markdown
author = attr: Joseph D. Hughes
author = Joseph D. Hughes
author_email = modflow@usgs.gov
maintainer = attr: Joseph D. Hughes
maintainer = Joseph D. Hughes
maintainer_email = jdhughes@usgs.gov
license = CC0
license_files = LICENSE, LICENSE.md
platform = Windows, Mac OS-X, Linux
keywords = MODFLOW, groundwater, hydrogeology
classifiers =
Expand All @@ -29,15 +28,13 @@ project_urls =
[options]
include_package_data = True # includes files listed in MANIFEST.in
zip_safe = False
packages = pymake
packages = find:
python_requires = >=3.7
install_requires =
numpy >= 1.15.0
requests
networkx

[sdist]
formats = zip

[flake8]
exclude =
Expand Down