-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempt to pin the reqs and add mambaforge for docs build (#170)
- Loading branch information
1 parent
daffb33
commit 4831efb
Showing
4 changed files
with
51 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,34 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools>=42" | ||
] | ||
requires = [ "setuptools>=64.0" ] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "compass" | ||
description = "A Package to Generate Coregistered Multi-temporal SAR SLC" | ||
readme = { file = "README.md", content-type = "text/markdown" } | ||
requires-python = ">=3.8" | ||
license = {file = "LICENSE.txt"} | ||
classifiers = [ | ||
"Development Status :: 2 - Pre-Alpha", | ||
"Intended Audience :: Science/Research", | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: OS Independent", | ||
] | ||
dynamic = ["version", "optional-dependencies"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "compass.__version__"} | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/opera-adt/compass" | ||
"Bug Tracker" = "https://github.com/opera-adt/compass/issues" | ||
|
||
# Entry points for the command line interface | ||
[project.scripts] | ||
"s1_cslc.py" = "compass.s1_cslc:main" | ||
"s1_geocode_stack.py" = "compass.s1_geocode_stack:main" | ||
"validate_product.py" = "compass.utils.validate_product:main" | ||
|
||
# extra requirements: `pip install compass[docs]` or `pip install .[docs]` | ||
[tool.setuptools.dynamic.optional-dependencies.docs] | ||
file = ["docs/requirements.txt"] |