-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: remove versioneer, update release-please (#519)
- Loading branch information
Showing
8 changed files
with
19 additions
and
3,082 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
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 |
---|---|---|
|
@@ -9,8 +9,6 @@ | |
|
||
from setuptools import find_packages, setup | ||
|
||
import versioneer | ||
|
||
__author__ = "Manuel Holtgrewe <[email protected]>" | ||
|
||
|
||
|
@@ -85,10 +83,16 @@ def bash_scripts(names): | |
return (os.path.join("scripts", name) for name in names) | ||
|
||
|
||
package_root = os.path.abspath(os.path.dirname(__file__)) | ||
|
||
version = {} | ||
with open(os.path.join(package_root, "snappy_pipeline/_version.py")) as fp: | ||
exec(fp.read(), version) | ||
version = version["__version__"] | ||
|
||
setup( | ||
name="snappy-pipeline", | ||
version=versioneer.get_version(), | ||
cmdclass=versioneer.get_cmdclass(), | ||
version=version, | ||
description="SNAPPY Nucleic Acid Processing in Python (by CUBI)", | ||
long_description=readme + "\n\n" + history, | ||
long_description_content_type="text/markdown", | ||
|
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 |
---|---|---|
|
@@ -2,13 +2,9 @@ | |
|
||
from .base import expand_ref, merge_dicts, print_config, print_sample_sheets | ||
|
||
# from ._version import get_versions | ||
|
||
__author__ = """Manuel Holtgrewe""" | ||
__email__ = "[email protected]" | ||
__version__ = "master" | ||
# del get_versions | ||
|
||
from . import _version | ||
from snappy_pipeline._version import __version__ | ||
|
||
__version__ = _version.get_versions()["version"] | ||
__all__ = ["__version__", "expand_ref", "merge_dicts", "print_config", "print_sample_sheets"] |
Oops, something went wrong.