Skip to content

Commit

Permalink
Replace setup.py by pyproject.toml (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
J535D165 authored Jun 9, 2023
1 parent d97ff82 commit 3c54f82
Show file tree
Hide file tree
Showing 7 changed files with 57 additions and 2,449 deletions.
4 changes: 0 additions & 4 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
include versioneer.py
include asreviewcontrib/makita/_version.py

include asreviewcontrib/makita/templates/*

10 changes: 6 additions & 4 deletions asreviewcontrib/makita/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
from ._version import get_versions

__version__ = get_versions()["version"]
del get_versions
try:
from asreviewcontrib.makita._version import __version__
from asreviewcontrib.makita._version import __version_tuple__
except ImportError:
__version__ = "0.0.0"
__version_tuple__ = (0, 0, 0)
Loading

0 comments on commit 3c54f82

Please sign in to comment.