Skip to content

Commit

Permalink
Switch to PEP 621 project metadata
Browse files Browse the repository at this point in the history
Drop obsolete test_suite and zip_safe settings.  Combine multi-word
keywords.  Add repo and documentation URLs.

PEP 621 support requires setuptools >= 61.

Closes: openslide#167
Signed-off-by: Benjamin Gilbert <[email protected]>
  • Loading branch information
bgilbert committed Nov 1, 2023
1 parent ef61785 commit b893ba2
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 48 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/build
/dist
/MANIFEST
/*.egg-info
*.pyc
45 changes: 45 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
[project]
name = "openslide-python"
maintainers = [
{name = "OpenSlide project", email = "[email protected]"}
]
description = "Python interface to OpenSlide"
readme = "README.md"
license = {text = "GNU Lesser General Public License, version 2.1"}
keywords = ["OpenSlide", "whole-slide image", "virtual slide", "library"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
requires-python = ">= 3.8"
dependencies = ["Pillow"]
dynamic = ["version"]

[project.urls]
Homepage = "https://openslide.org/"
Documentation = "https://openslide.org/api/python/"
Repository = "https://github.com/openslide/openslide-python"

[tool.setuptools]
packages = ["openslide"]

[tool.setuptools.dynamic]
version = {attr = "openslide._version.__version__"}

[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
47 changes: 0 additions & 47 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,54 +1,7 @@
import os

from setuptools import Extension, setup

# Load version string
_verfile = os.path.join(os.path.dirname(__file__), 'openslide', '_version.py')
with open(_verfile) as _fh:
exec(_fh.read()) # instantiates __version__

with open('README.md') as _fh:
_long_description = _fh.read()

setup(
name='openslide-python',
version=__version__, # noqa: F821 undefined-name __version__
packages=[
'openslide',
],
ext_modules=[
Extension('openslide._convert', ['openslide/_convert.c']),
],
test_suite='tests',
maintainer='OpenSlide project',
maintainer_email='[email protected]',
description='Python interface to OpenSlide',
long_description=_long_description,
long_description_content_type='text/markdown',
license='GNU Lesser General Public License, version 2.1',
keywords='openslide whole-slide image virtual slide library',
url='https://openslide.org/',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'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',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
python_requires='>=3.8',
install_requires=[
'Pillow',
],
zip_safe=True,
)

0 comments on commit b893ba2

Please sign in to comment.