summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2024-10-27 20:57:31 +0100
committerYuval Adam <_@yuv.al>2024-10-27 20:57:31 +0100
commit17ddd2154e3de6fa7ea12b16d8352b98252b314d (patch)
tree6bc3e0ba1798536dd3809d3045a493122e4bf02f /pyproject.toml
parentba7ee3baae106baf48b738e9260a5e9ade9d5e22 (diff)
Initial uv files migration
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml40
1 files changed, 18 insertions, 22 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 56bb190..2696516 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,25 +1,21 @@
-[tool.poetry]
+[project]
name = "issguru"
-version = "0.1.0"
-description = ""
-authors = ["Yuval Adam <_@yuv.al>"]
+version = "1.0.0"
+description = "ISS pass predictions"
readme = "README.md"
-package-mode = false
+requires-python = ">=3.12"
+dependencies = [
+ "aiofiles>=24.1.0",
+ "fastapi>=0.115.3",
+ "geoip2>=4.8.0",
+ "jinja2>=3.1.4",
+ "pyephem>=9.99",
+ "skyfield>=1.49",
+ "uvicorn>=0.32.0",
+]
-[tool.poetry.dependencies]
-python = "^3.12"
-pyephem = "^9.99"
-skyfield = "^1.49"
-fastapi = "^0.115.0"
-uvicorn = "^0.31.1"
-Jinja2 = "^3.1.4"
-aiofiles = "^24.1.0"
-geoip2 = "^4.8.0"
-
-[tool.poetry.group.dev.dependencies]
-pytest = "^8.3.3"
-ruff = "^0.6.9"
-
-[build-system]
-requires = ["poetry-core"]
-build-backend = "poetry.core.masonry.api"
+[dependency-groups]
+dev = [
+ "pytest>=8.3.3",
+ "ruff>=0.7.1",
+]