|
| 1 | +[project] |
| 2 | +name = "stactask" |
| 3 | +version = "0.1.1" |
| 4 | +authors = [{ name = "Matthew Hanson", email = "matt.a.hanson@gmail.com" }] |
| 5 | +description = "Class interface for running custom algorithms and workflows on STAC Items" |
| 6 | +readme = "README.md" |
| 7 | +requires-python = ">=3.8" |
| 8 | +keywords = ["pystac", "imagery", "raster", "catalog", "STAC"] |
| 9 | +license = { text = "Apache-2.0" } |
| 10 | +classifiers = [ |
| 11 | + "Development Status :: 2 - Pre-Alpha", |
| 12 | + "Intended Audience :: Developers", |
| 13 | + "License :: OSI Approved :: Apache Software License", |
| 14 | + "Natural Language :: English", |
| 15 | + "Programming Language :: Python :: 3", |
| 16 | + "Programming Language :: Python :: 3.8", |
| 17 | + "Programming Language :: Python :: 3.9", |
| 18 | + "Programming Language :: Python :: 3.10", |
| 19 | + "Programming Language :: Python :: 3.11", |
| 20 | +] |
| 21 | +dependencies = [ |
| 22 | + "pystac>=1.6", |
| 23 | + "python-dateutil>=2.7.0", |
| 24 | + "boto3-utils>=0.3.2", |
| 25 | + "fsspec>=2022.8.2", |
| 26 | + "jsonpath_ng>=1.5.3", |
| 27 | + "requests>=2.28.1", |
| 28 | + "s3fs>=2022.8.2", |
| 29 | +] |
| 30 | + |
| 31 | +[project.optional-dependencies] |
| 32 | +dev = [ |
| 33 | + "black~=23.7.0", |
| 34 | + "codespell~=2.2.5", |
| 35 | + "flake8~=6.1.0", |
| 36 | + "isort~=5.12.0", |
| 37 | + "mypy~=1.5.0", |
| 38 | + "pre-commit~=3.3.3", |
| 39 | + "pytest~=7.4.0", |
| 40 | + "pytest-cov~=4.1.0", |
| 41 | + "types-setuptools~=68.0.0", |
| 42 | +] |
| 43 | + |
| 44 | +[project.urls] |
| 45 | +Issues = "https://github.com/stac-utils/stactask/issues" |
| 46 | +Github = "https://github.com/stac-utils/stac-task" |
| 47 | +Changelog = "https://github.com/stac-utils/stac-task/blob/main/CHANGELOG.md" |
| 48 | + |
1 | 49 | [tool.mypy] |
2 | 50 | strict = true |
3 | 51 |
|
4 | 52 | [[tool.mypy.overrides]] |
5 | | -module = [ |
6 | | - "boto3utils", |
7 | | - "jsonpath_ng.ext", |
8 | | - "fsspec", |
9 | | -] |
| 53 | +module = ["boto3utils", "jsonpath_ng.ext", "fsspec"] |
10 | 54 | ignore_missing_imports = true |
0 commit comments