From 0ef0a343fc14c49e4818ba5f2844515954ba9fc9 Mon Sep 17 00:00:00 2001 From: dboe <dboe@ipp.mpg.de> Date: Sat, 18 Jul 2020 15:31:38 +0200 Subject: [PATCH] release-v0.6.0 --- rna/__init__.py | 2 +- setup.cfg | 43 +++++++++++++++++++++---------------------- setup.py | 2 +- 3 files changed, 23 insertions(+), 24 deletions(-) diff --git a/rna/__init__.py b/rna/__init__.py index 3e17b4c..0f1cf8b 100644 --- a/rna/__init__.py +++ b/rna/__init__.py @@ -2,7 +2,7 @@ __author__ = """Daniel Böckenhoff""" __email__ = "dboe@ipp.mpg.de" -__version__ = "0.5.1" +__version__ = "0.6.0" from . import plotting from . import log # NOQA diff --git a/setup.cfg b/setup.cfg index fe13507..2ae607a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.1 +current_version = 0.6.0 tag = True commit = True message = release-v{new_version} @@ -17,23 +17,22 @@ name = rna url = https://gitlab.mpcdf.mpg.de/dboe/rna author = Daniel Böckenhoff author_email = dboe@ipp.mpg.de -# find the full list of possible classifiers at https://pypi.org/classifiers/ classifiers = - Development Status :: 3 - Alpha - License :: OSI Approved :: MIT License - Programming Language :: Python - Programming Language :: Python :: 3 - Programming Language :: Python :: 3.5 - Programming Language :: Python :: 3.6 - Programming Language :: Python :: 3.7 - Programming Language :: Python :: 3.8 + Development Status :: 3 - Alpha + License :: OSI Approved :: MIT License + Programming Language :: Python + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.5 + Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 license = MIT License license_files = LICENSE.rst description = Basic and essential code building blocks of all pythons long_description = file: README.rst, LICENSE.rst long_description_content_type = text/x-rst keywords = plotting, matplotlib, pyqtgraph, backend, logging, path, argparse -project_urls = +project_urls = Documentation = https://rna_docs.readthedocs.io Source = https://gitlab.mpcdf.mpg.de/dboe/rna @@ -44,30 +43,30 @@ install_requires = numpy matplotlib pathlib -tests_require = - doctest - unittest +tests_require = + doctest + unittest [options.packages.find] exclude = tests* [options.extras_require] -all = - %(dev)s -dev = +all = + %(dev)s +dev = %(docs)s - %(test)s + %(test)s bumpversion # for incrementing the version twine # for publishing pre-commit # https://pre-commit.com/ for hook managment pre-commit-hooks - cookiecutter_project_upgrader + cookiecutter_project_upgrader %(pyqtgraph)s -docs = - sphinx>=2.2.0 # requires templatedir option in sphinx-apidoc - sphinx_rtd_theme>=0.4.3 +docs = + sphinx>=2.2.0 # requires templatedir option in sphinx-apidoc + sphinx_rtd_theme>=0.4.3 test = flake8 pytest diff --git a/setup.py b/setup.py index db91de2..5c49a31 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,3 @@ from setuptools import setup -setup(version="0.5.1") +setup(version="0.6.0") -- GitLab