[project]
name = 'MVCM'
description = 'MODIS-VIIRS Cloud Mask algorithm for LEO/GEO'
readme = 'README.md'
requires-python = '>=3.9,<3.12'
# license = ''
authors = [
    { name = 'Paolo Veglio', email = 'paolo.veglio@ssec.wisc.edu'},
    ]
classifiers = [
    'Development Status :: 2 - Pre-Alpha',
    # 'License :: OSI Approved :: Apache Software License',
    'Programming Language :: Python :: 3.9',
    'Programming Language :: Python :: 3.10',
    'Programming Language :: Python :: 3.11',
    'Programming Language :: Python :: Implementation :: CPython',
    'Programming Language :: Cython',
    'Programming Language :: C',
    ]
dependencies = [
    'Cython',
    'wheel',
    'setuptools',
    'numpy',
    'xarray',
    'attrs',
    'pre-commit',
    ]
dynamic = ['version']

[project.scripts]
mvcm = "mvcm.cli_mvcm:mvcm"

[tool.hatch.version]
path = 'mvcm/__init__.py'


[tool.hatch.envs.test]
dependencies = [
    'pytest',
    ]

[build-system]
requires = ['hatchling']
build-backend = 'hatchling.build'

[tool.pytest.ini_options]
addopts = [
    '--import-mode=importlib',
    ]