From 71af00bf8ae5bd227e0c8180e89b6b6bb7e3e5f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20L=C3=A4hnemann?= Date: Wed, 13 Dec 2023 10:14:30 +0100 Subject: [PATCH] Align towncrier and keywords --- pyproject.toml | 63 ++++++++++++++++---------------------------------- 1 file changed, 20 insertions(+), 43 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6f43522..bb3ff7c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,14 +4,19 @@ build-backend = "setuptools.build_meta" [project] name = "holospy" -description = "Analysis of (off-axis) holography data with HyperSpy." +description = "Analysis of (off-axis) electron holography data with HyperSpy." requires-python = ">=3.8" readme = "README.md" keywords=[ + "python" + "hyperspy" "data analysis", "microscopy", "electron microscopy", + "electron holography", "Off-axis holography", + "STEM", + "TEM", ] classifiers = [ "Development Status :: 4 - Beta", @@ -19,16 +24,14 @@ classifiers = [ "Intended Audience :: Science/Research", "Topic :: Software Development :: Libraries", "Topic :: Scientific/Engineering", + "Topic :: Scientific/Engineering :: Physics", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", + "Operating System :: OS Independent", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", - "Operating System :: Microsoft :: Windows", - "Operating System :: POSIX", - "Operating System :: Unix", - "Operating System :: MacOS", ] dependencies = [ "hyperspy>=2.0rc0", @@ -102,43 +105,17 @@ include = ["holospy*"] fallback_version = "0.2.dev0" [tool.towncrier] -package_dir = "holospy" -filename = "CHANGES.rst" directory = "upcoming_changes/" -title_format = "{version} ({project_date})" +filename = "CHANGES.rst" issue_format = "`#{issue} `_" - - [[tool.towncrier.type]] - directory = "new" - name = "New features" - showcontent = true - - [[tool.towncrier.type]] - directory = "bugfix" - name = "Bug Fixes" - showcontent = true - - [[tool.towncrier.type]] - directory = "doc" - name = "Improved Documentation" - showcontent = true - - [[tool.towncrier.type]] - directory = "deprecation" - name = "Deprecations" - showcontent = true - - [[tool.towncrier.type]] - directory = "enhancements" - name = "Enhancements" - showcontent = true - - [[tool.towncrier.type]] - directory = "api" - name = "API changes" - showcontent = true - - [[tool.towncrier.type]] - directory = "maintenance" - name = "Maintenance" - showcontent = true +title_format = "{version} ({project_date})" +package_dir = "holospy" +type = [ + { directory = "new", name = "New features", showcontent = true }, + { directory = "enhancements", name = "Enhancements", showcontent = true }, + { directory = "bugfix", name = "Bug Fixes", showcontent = true }, + { directory = "api", name = "API changes", showcontent = true }, + { directory = "deprecation", name = "Deprecations", showcontent = true }, + { directory = "doc", name = "Improved Documentation", showcontent = true }, + { directory = "maintenance", name = "Maintenance", showcontent = true }, +]