File tree Expand file tree Collapse file tree 2 files changed +26
-2
lines changed
Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 1+ name : Publish to PyPI
2+
3+ on :
4+ push :
5+ tags :
6+ - " v*.*.*"
7+
8+ jobs :
9+ build :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : actions/checkout@v4
13+
14+ - name : Install uv
15+ run : curl -LsSf https://astral.sh/uv/install.sh | sh
16+
17+ - name : Build package
18+ run : uv build
19+
20+ - name : Publish to PyPI
21+ uses : pypa/gh-action-pypi-publish@release/v1
22+ with :
23+ password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change 11[project ]
22name = " superstac"
33version = " 0.1.0"
4- description = " Add your description here "
4+ description = " High-availability satellite imagery retrieval across multiple STAC catalogs. "
55readme = " README.md"
66requires-python = " >=3.9"
77dependencies = [
88 " pystac-client==0.8.5" ,
99]
10-
10+ license = { text = " MIT" }
11+ authors = [{
name =
" Emmanuel Jolaiya" ,
email =
" [email protected] " }]
1112[tool .uv ]
1213dev-dependencies = [
1314 " ruff" ,
You can’t perform that action at this time.
0 commit comments