Skip to content

Commit

Permalink
Merge pull request #4 from pyiron/versioneer
Browse files Browse the repository at this point in the history
add versioneer
  • Loading branch information
jan-janssen committed Feb 5, 2021
2 parents 142a168 + d15f505 commit 2115bbb
Show file tree
Hide file tree
Showing 7 changed files with 2,407 additions and 2 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include versioneer.py
include pyiron_experimental/_version.py
include LICENSE
1 change: 1 addition & 0 deletions binder/postBuild
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
printf "[DEFAULT]\nTOP_LEVEL_DIRS = ${HOME}\nRESOURCE_PATHS = ${HOME}/resources" > ${HOME}/.pyiron
pip install --no-deps .
mv notebooks/* .
rm -rf notebooks pyiron_experimental setup.py README.md LICENSE CODE_OF_CONDUCT.md binder .github .ci_support setup.cfg versioneer.py
8 changes: 8 additions & 0 deletions pyiron_experimental/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
__version__ = "0.1"
__all__ = []

from pyiron_base import Project, JOB_CLASS_DICT


JOB_CLASS_DICT["pySTEMTEMMETAJob"] = "pyiron_experimental.pystemjob"
JOB_CLASS_DICT["TEMMETAJob"] = "pyiron_experimental.temmetajob"
JOB_CLASS_DICT["MatchSeries"] = "pyiron_experimental.matchseries"

from ._version import get_versions

__version__ = get_versions()["version"]
del get_versions
Loading

0 comments on commit 2115bbb

Please sign in to comment.