-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate from setup.py to pyproject.toml and update sphinx version
- Loading branch information
1 parent
e7efa6a
commit 7947e7b
Showing
8 changed files
with
35 additions
and
135 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# compatibility black and flake8 | ||
[flake8] | ||
max-line-length = 88 | ||
extend-ignore = E203, E501 |
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 |
---|---|---|
|
@@ -11,6 +11,7 @@ __pycache__/ | |
cov.xml | ||
*.lock | ||
.run | ||
venv | ||
|
||
# Discard CI/OUTPUTS | ||
CI/OUTPUT/* | ||
|
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 |
---|---|---|
|
@@ -2,8 +2,13 @@ | |
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools.packages.find] | ||
include = ["eoreader*"] | ||
namespaces = false | ||
|
||
[project] | ||
name = "eoreader" | ||
version = "0.20.4" | ||
authors = [ | ||
{name = "ICube-SERTIT", email = "[email protected]"}, | ||
] | ||
|
@@ -33,7 +38,7 @@ dependencies = [ | |
"xarray>=0.18.0", | ||
"rioxarray>=0.10.0", | ||
"geopandas>=0.11.0", | ||
"sertit[full]>=1.27.0", | ||
"sertit[full]>=1.30.0", | ||
"spyndex>=0.3.0", | ||
"pyresample", | ||
"zarr", | ||
|
@@ -42,3 +47,13 @@ dependencies = [ | |
"methodtools", | ||
"dicttoxml", | ||
] | ||
|
||
[project.urls] | ||
Bug_Tracker = "https://github.com/sertit/eoreader/issues" | ||
Documentation = "https://eoreader.readthedocs.io" | ||
Source_Code = "https://github.com/sertit/eoreader" | ||
|
||
# compatibility black and isort | ||
[tool.isort] | ||
profile = "black" | ||
known_first_party = ["CI", "eoreader"] |
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