From 900b9dfdba164797a4e445cca816c42978905e85 Mon Sep 17 00:00:00 2001 From: Matthew Hambley Date: Thu, 4 Jan 2024 16:45:21 +0000 Subject: [PATCH] Restore long description (#139) --- pyproject.toml | 11 +++++++++-- setup.cfg | 18 ------------------ 2 files changed, 9 insertions(+), 20 deletions(-) delete mode 100644 setup.cfg diff --git a/pyproject.toml b/pyproject.toml index 0c4d5fc..7f8664b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,9 +7,16 @@ name='stylist' description="Flexible source code style checking tool" requires-python = '>=3.7, <4' license = {text = 'BSD 3-Clause License'} -classifiers = ['Programming Language :: Python :: 3'] dependencies = ['fparser >= 0.1.2'] dynamic = ['version', 'readme'] +keywords = ['linter', 'fortran'] +classifiers = [ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'Topic :: Software Development :: Quality Assurance', + 'License :: OSI Approved :: BSD License', + 'Programming Language :: Python :: 3' +] [project.optional-dependencies] @@ -31,7 +38,7 @@ documentation = 'https://metoffice.github.io/stylist' repository = 'https://github.com/MetOffice/stylist/' [tool.setuptools.dynamic] -readme = {file = 'README.md'} +readme = {file = 'README.rst'} version = {attr = 'stylist.__version__'} [tool.setuptools.packages.find] diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index e92c9a0..0000000 --- a/setup.cfg +++ /dev/null @@ -1,18 +0,0 @@ -[metadata] -name = stylist -description = Extensible code style checker currently supporting Fortran, PSyclone DSL, etc -long_description = file:README.rst -long_description_content_type = text/x-rst -url = https://github.com/MetOffice/stylist -author = Met Office -license = BSD 3-Clause -license_files = LICENSE -keywords = linter fortran psyclone -classifiers=Development Status :: 3 - Alpha - Intended Audience :: Developers - Topic :: Software Development :: Quality Assurance - License :: OSI Approved :: BSD License - Programming Language :: Python :: 3.7 - Programming Language :: Python :: 3.8 - Programming Language :: Python :: 3.9 - Programming Language :: Python :: 3.10