diff --git a/README.md b/README.md index 39787d3..c765269 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ sample2-100_3.txt => sampleID = 'sample2-100', position = 3 ``` ### Version -The current version is v0.6.17 +The current version is v0.6.18 ### Dependencies diff --git a/pyproject.toml b/pyproject.toml index 81a4fcd..f24184f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,5 +8,5 @@ requires = [ [tool.setuptools_scm] write_to = "src/raman_fitting/_version.py" local_scheme = 'dirty-tag' -fallback_version = '0.6.15' +fallback_version = '0.6.18' #"write_to": "src/raman_fitting/_version.py" diff --git a/setup.cfg b/setup.cfg index 74cea68..09269c8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.15 +current_version = 0.6.18 commit = True tag = True message = '{current_version} → {new_version}' @@ -13,9 +13,9 @@ description = Python framework for the batch processing and deconvolution of ram long_description = file:README.md long_description_content_type = text/markdown url = https://github.com/MyPyDavid/raman-fitting.git -project_urls = +project_urls = Source Code = https://github.com/MyPyDavid/raman-fitting.git -classifiers = +classifiers = License :: OSI Approved :: MIT License Natural Language :: English Programming Language :: Python @@ -30,7 +30,7 @@ classifiers = [options] python_requires = >=3.7.0 -install_requires = +install_requires = pandas >= 1.0.0 scipy >= 1.5.2 lmfit >= 1.0.0 @@ -38,7 +38,7 @@ install_requires = numpy >= 1.19.2 openpyxl >= 3.0.1 include_package_data = True -package_dir = +package_dir = = src packages = find: setup_requires = setuptools_scm @@ -48,7 +48,7 @@ setup_requires = setuptools_scm [options.packages.find] where = src -exclude = +exclude = build* dist* docs* @@ -57,18 +57,18 @@ exclude = tools* [options.entry_points] -console_scripts = +console_scripts = raman_fitting = raman_fitting.interfaces:main [options.extras_require] -testing = +testing = pytest pytest-cov pytest-flake8 mock wheel pip>=19.1 # For proper file:// URLs support. -dev = +dev = isort pylint flake8 @@ -82,7 +82,7 @@ dev = test = pytest [check-manifest] -ignore = +ignore = .github .github/* @@ -104,30 +104,30 @@ precision = 2 omit = *migrations* [coverage:paths] -source = +source = src */site-packages [coverage:run] branch = False -source = +source = src -omit = +omit = */tests/* */src/raman_fitting/*/_dev_*.py */src/raman_fitting/*/_todo_*.py parallel = true [coverage:report] -exclude_lines = +exclude_lines = pragma: no cover - + def __repr__ if self\.debug - + raise AssertionError raise NotImplementedError - + if 0: if __name__ == .__main__.: @@ -135,7 +135,7 @@ exclude_lines = extension-pkg-whitelist = numpy, pandas, matplotlib, lmfit [flake8] -ignore = +ignore = E402, W503, W504, diff --git a/src/raman_fitting/__init__.py b/src/raman_fitting/__init__.py index 50ad52c..5cb0427 100644 --- a/src/raman_fitting/__init__.py +++ b/src/raman_fitting/__init__.py @@ -15,7 +15,7 @@ __version__ = version except: - __version__ = "__version__ = '0.6.15'" + __version__ = "__version__ = '0.6.18'" from raman_fitting.config import filepath_settings