|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools >= 61.2.0"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "xcube-core" |
| 7 | +dynamic = ["version", "readme"] |
| 8 | +authors = [ |
| 9 | + {name = "xcube Development Team"} |
| 10 | +] |
| 11 | +description = """\ |
| 12 | + xcube is a Python package for generating and exploiting |
| 13 | + data cubes powered by xarray, dask, and zarr. |
| 14 | + """ |
| 15 | +keywords = [ |
| 16 | + "analysis ready data", "data science", |
| 17 | + "datacube", "xarray", "zarr" |
| 18 | +] |
| 19 | +license = {text = "MIT"} |
| 20 | +requires-python = ">=3.9" |
| 21 | +dependencies = [ |
| 22 | + "botocore>=1.34.51", |
| 23 | + "cftime>=1.6.3", |
| 24 | + "click>=8.0", |
| 25 | + "cmocean>=2.0", |
| 26 | + "dask>=2021.6", |
| 27 | + "dask-image>=0.6", |
| 28 | + "deprecated>=1.2", |
| 29 | + "distributed>=2021.6", |
| 30 | + "fiona>=1.8", |
| 31 | + "fsspec>=2021.6", |
| 32 | + "gdal>=3.0", |
| 33 | + "geopandas>=0.8", |
| 34 | + "jdcal>=1.4", |
| 35 | + "jsonschema>=3.2", |
| 36 | + "mashumaro", |
| 37 | + "matplotlib>=3.8.3", |
| 38 | + "netcdf4>=1.5", |
| 39 | + "numba>=0.52", |
| 40 | + "numcodecs>=0.12.1", |
| 41 | + "numpy>=1.16", |
| 42 | + "pandas>=1.3", |
| 43 | + "pillow>=6.0", |
| 44 | + "pyjwt>=1.7", |
| 45 | + "pyproj>=3.0", |
| 46 | + "pyyaml>=5.4", |
| 47 | + "rasterio>=1.2", |
| 48 | + "requests>=2.25", |
| 49 | + "rfc3339-validator>=0.1", |
| 50 | + "rioxarray>=0.11", |
| 51 | + "s3fs>=2021.6", |
| 52 | + "setuptools>=41.0", |
| 53 | + "shapely>=1.6", |
| 54 | + "tornado>=6.0", |
| 55 | + "urllib3>=1.26", |
| 56 | + "xarray>=2022.6", |
| 57 | + "zarr>=2.11" |
| 58 | +] |
| 59 | +classifiers = [ |
| 60 | + "Development Status :: 5 - Production/Stable", |
| 61 | + "Intended Audience :: Science/Research", |
| 62 | + "Intended Audience :: Developers", |
| 63 | + "License :: OSI Approved :: MIT License", |
| 64 | + "Programming Language :: Python :: 3", |
| 65 | + "Programming Language :: Python :: 3.9", |
| 66 | + "Programming Language :: Python :: 3.10", |
| 67 | + "Programming Language :: Python :: 3.11", |
| 68 | + "Programming Language :: Python :: 3.12", |
| 69 | + "Topic :: Software Development", |
| 70 | + "Topic :: Scientific/Engineering", |
| 71 | + "Typing :: Typed", |
| 72 | + "Operating System :: Microsoft :: Windows", |
| 73 | + "Operating System :: POSIX", |
| 74 | + "Operating System :: Unix", |
| 75 | + "Operating System :: MacOS", |
| 76 | +] |
| 77 | + |
| 78 | +# entry point xcube's CLI |
| 79 | +[project.scripts] |
| 80 | +xcube = "xcube.cli.main:main" |
| 81 | + |
| 82 | +# entry point xcube's default extensions |
| 83 | +[project.entry-points.xcube_plugins] |
| 84 | +xcube = "xcube.plugin:init_plugin" |
| 85 | + |
| 86 | +[tool.setuptools.package-data] |
| 87 | +"xcube.webapi.meta" = [ |
| 88 | + "data/openapi.html", |
| 89 | +] |
| 90 | +"xcube.webapi.viewer" = [ |
| 91 | + "data/*", "data/**/*", |
| 92 | +] |
| 93 | + |
| 94 | +[tool.setuptools.dynamic] |
| 95 | +version = {attr = "xcube.__version__"} |
| 96 | +readme = {file = "README.md", content-type = "text/markdown"} |
| 97 | + |
| 98 | +[tool.setuptools.packages.find] |
| 99 | +exclude = [ |
| 100 | + "test*", |
| 101 | + "doc*" |
| 102 | +] |
| 103 | + |
| 104 | +[project.optional-dependencies] |
| 105 | +dev = [ |
| 106 | + "flake8>=3.7", |
| 107 | + "moto>=4", |
| 108 | + "pytest>=4.4", |
| 109 | + "pytest-cov>=2.6", |
| 110 | + "requests-mock>=1.8", |
| 111 | + "werkzeug" |
| 112 | +] |
| 113 | + |
| 114 | +[project.urls] |
| 115 | +Documentation = "https://xcube.readthedocs.io/en/latest/" |
| 116 | +Source = "https://github.com/xcube-dev/xcube" |
| 117 | +Download = "https://pypi.org/project/xcube-core/#files" |
| 118 | +Tracker = "https://github.com/xcube-dev/xcube/issues" |
| 119 | +"Release notes" = "https://github.com/xcube-dev/xcube/releases" |
| 120 | +Changelog = "https://github.com/xcube-dev/xcube/blob/main/CHANGES.md" |
0 commit comments