File tree Expand file tree Collapse file tree 5 files changed +27
-26
lines changed
Expand file tree Collapse file tree 5 files changed +27
-26
lines changed Original file line number Diff line number Diff line change @@ -29,3 +29,4 @@ coverage
2929
3030.serena /
3131__pycache__
32+ .venv /
Original file line number Diff line number Diff line change 11install :
2- poetry install
2+ uv sync
33
44test :
5- poetry run pytest
5+ uv run pytest
66
77build :
8- poetry build
8+ uv build
99
1010publish :
11- poetry publish --build
11+ uv publish
1212
1313clean :
1414 rm -rf dist
1515
1616local-install :
17- pip install ./dist/datashield-* .tar.gz
17+ pip install ./dist/datashield-* .tar.gz
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- [tool . poetry ]
1+ [project ]
22name = " datashield"
3- version = " 0.1 .0"
3+ version = " 0.2 .0"
44description = " DataSHIELD Client Interface in Python."
5- authors = [" Yannick Marcon < yannick.marcon@obiba.org> " ]
6- maintainers = [" Yannick Marcon < yannick.marcon@obiba.org> " ]
7- license = " LGPL"
5+ authors = [{ name = " Yannick Marcon" , email = " yannick.marcon@obiba.org" } ]
6+ maintainers = [{ name = " Yannick Marcon" , email = " yannick.marcon@obiba.org" } ]
7+ license = { text = " LGPL" }
88readme = " README.md"
9- homepage = " https://www.datashield.org"
10- repository = " https://github.com/datashield/datashield-python"
11- documentation = " https://datashield.github.io/datashield-python"
9+ requires-python = " >=3.10"
10+ dependencies = []
1211
13- [tool .poetry .urls ]
12+ [project .urls ]
13+ Homepage = " https://www.datashield.org"
14+ Repository = " https://github.com/datashield/datashield-python"
15+ Documentation = " https://datashield.github.io/datashield-python"
1416"Bug Tracker" = " https://github.com/datashield/datashield-python/issues"
1517
16- [tool .poetry .dependencies ]
17- python = " ^3.7"
18-
1918[build-system ]
20- requires = [" poetry-core " ]
21- build-backend = " poetry.core.masonry.api "
19+ requires = [" hatchling " ]
20+ build-backend = " hatchling.build "
You can’t perform that action at this time.
0 commit comments