From 6229296ef4c5541961d2b62d242c73b475a7ff48 Mon Sep 17 00:00:00 2001 From: Jose Borreguero Date: Tue, 10 Apr 2018 16:17:07 -0400 Subject: [PATCH] Refs #37 exclude test directory from release --- HISTORY.rst | 12 ++++++++++-- qef/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 4 ++-- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 2beb4d2..e546f74 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,8 +2,16 @@ History ======= -0.2.0 () --------- +0.2.2 (2018-04-10) +------------------ +* Exclude tests directory from release + +0.2.1 (2018-04-10) +------------------ +* Include subdirectories of qef in release + +0.2.0 (2018-04-09) +------------------ * Notebook for global fitting (PR #40) * Load Mantid Nexus data (PR #38) * Tabulated resolution model (PR #43) diff --git a/qef/__init__.py b/qef/__init__.py index 476126a..7a6c48d 100644 --- a/qef/__init__.py +++ b/qef/__init__.py @@ -4,5 +4,5 @@ __author__ = """Jose Borreguero""" __email__ = 'borreguero@gmail.com' -__version__ = '0.2.1' +__version__ = '0.2.2' diff --git a/setup.cfg b/setup.cfg index a013a1f..4507b82 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1 +current_version = 0.2.2 commit = True tag = True diff --git a/setup.py b/setup.py index a0a13a3..a9c4640 100644 --- a/setup.py +++ b/setup.py @@ -28,14 +28,14 @@ setup( name='qef', - version='0.2.1', + version='0.2.2', description="quasielastic fitting", long_description=readme + '\n\n' + history, author="Jose Borreguero", author_email='borreguero@gmail.com', url='https://github.com/jmborr/qef', #packages=find_packages(include=['qef']), - packages=find_packages(), + packages=find_packages(exclude='tests'), include_package_data=True, install_requires=requirements, license="MIT license",