1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
[project]
authors = [{ name = 'John Evans', email = 'jevans667cc@proton.me' }]
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Programming Language :: Python :: Implementation :: CPython',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
]
description = 'Read and write JPEG 2000 files'
dependencies = [
'numpy',
'lxml',
'pillow',
]
keywords = ['JPEG2000', 'JPEG', '2000', 'imagery']
license = 'MIT'
name = 'Glymur'
readme = 'README.md'
requires-python = '>=3.11'
version = '0.14.7'
[project.scripts]
jp2dump = 'glymur.command_line:main'
tiff2jp2 = 'glymur.command_line:tiff2jp2'
jpeg2jp2 = 'glymur.command_line:jpeg2jp2'
[project.urls]
Homepage = 'https://glymur.readthedocs.io'
Documentation = 'https://glymur.readthedocs.io'
Repository = 'https://github.com/quintusdias/glymur'
[build-system]
requires = ["setuptools>=60", "setuptools-scm>=8.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:skimage.util.*",
]
|