-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #252 from GeoStat-Framework/prepare_v1.7
Prepare v1.7
- Loading branch information
Showing
3 changed files
with
44 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{{ fullname | escape | underline}} | ||
|
||
.. currentmodule:: {{ module }} | ||
|
||
.. autoclass:: {{ objname }} | ||
:members: | ||
:undoc-members: | ||
:inherited-members: | ||
:show-inheritance: | ||
|
||
.. raw:: latex | ||
|
||
\clearpage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,15 +14,13 @@ requires-python = ">=3.7" | |
name = "PyKrige" | ||
description = "Kriging Toolkit for Python." | ||
authors = [ | ||
{name = "Benjamin S. Murphy"}, | ||
{name = "Sebastian Müller", email = "[email protected]"}, | ||
{name = "Benjamin S. Murphy, Sebastian Müller", email = "[email protected]"}, | ||
] | ||
maintainers = [ | ||
{name = "Sebastian Müller", email = "[email protected]"}, | ||
{name = "Roman Yurchak"}, | ||
{name = "Sebastian Müller, Roman Yurchak", email = "[email protected]"}, | ||
] | ||
readme = "README.md" | ||
license = {file = "LICENSE"} | ||
license = {text = "BSD-3-Clause"} | ||
dynamic = ["version"] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
|
@@ -40,6 +38,7 @@ classifiers = [ | |
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: GIS", | ||
"Topic :: Scientific/Engineering :: Mathematics", | ||
|
@@ -63,7 +62,6 @@ doc = [ | |
"sphinx>=4", | ||
"sphinx-gallery>=0.8", | ||
"sphinx-rtd-theme>=1", | ||
"sphinxcontrib-napoleon", | ||
] | ||
plot = ["matplotlib>=3,<4"] | ||
sklearn = ["scikit-learn>=0.19"] | ||
|
@@ -81,6 +79,9 @@ Homepage = "https://github.com/GeoStat-Framework/PyKrige" | |
Source = "https://github.com/GeoStat-Framework/PyKrige" | ||
Tracker = "https://github.com/GeoStat-Framework/PyKrige/issues" | ||
|
||
[tool.setuptools] | ||
license-files = ["LICENSE"] | ||
|
||
[tool.setuptools_scm] | ||
write_to = "src/pykrige/_version.py" | ||
write_to_template = "__version__ = '{version}'" | ||
|