-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (51 loc) · 1.44 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[project]
name = "ranlibx"
version = "0.1.4"
description = "Global interface for RAN"
authors = [{ name = "Ameer Arsala", email = "[email protected]" }]
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"fastapi>=0.112.2,<0.113",
"typer>=0.12.5,<0.13",
"httpx>=0.27.2,<0.28",
"pydantic>2.0",
"uvicorn[standard]>=0.30.6,<0.31",
"email-validator>=2.2.0,<3",
"rich>=13.8.1,<14",
]
requires-python = ">= 3.9"
[project.urls]
Repository = "https://github.com/ran-labs/ranlibx"
Changelog = "https://github.com/ran-labs/ranlibx/blob/main/CHANGELOG.md"
Homepage = "https://ran.so"
Documentation = "https://ran.so/docs"
Source = "https://github.com/ran-labs/ranlibx"
Tracker = "https://github.com/ran-labs/ranlibx/issues"
Twitter = "https://twitter.com/RANdotSO"
[project.scripts]
ranx = "ranlibx.cli.main:app"
[project.optional-dependencies]
fdev = [
"hatch>=1.12.0,<2",
"pytest",
"tomli"
]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64", "osx-arm64", "win-64"]
[tool.pixi.pypi-dependencies]
ranlibx = { path = ".", editable = true }
[tool.pixi.feature.fdev.dependencies]
ruff = ">=0.6.8,<0.7"
# [tool.pixi.tasks]
## ranx = "python3 ranlibx/cli/main.py"
[tool.pixi.feature.fdev.tasks]
setup = "pipelight enable git-hooks"
build = "hatch build ./dist"
[tool.pixi.environments]
dev = { features = ["fdev"] }
prod = { features = [] }