-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (46 loc) · 1.27 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
[project]
name = "pybashify"
version = "0.1.1"
description = "Use Python to write bash scripts while interop w/ bash"
authors = [ { name = "Ameer Arsala", email = "[email protected]" } ]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">= 3.10"
dependencies = [
"typer>=0.12.5,<0.13",
"pydantic>=2.0",
"numpy>=2.1.0,<3",
"astor>=0.8.1,<0.9"
]
[project.urls]
Repository = "https://github.com/AmeerArsala/pybashify"
Source = "https://github.com/AmeerArsala/pybashify"
Tracker = "https://github.com/AmeerArsala/pybashify/issues"
[project.optional-dependencies]
fdev = [
"hatch",
"pytest",
"ruff>=0.6.5,<0.7",
"tomli>=2.0.2,<3"
]
[project.scripts]
bashify = "pybashify.cli.main:app"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.hatch.build.targets.wheel]
packages = ["pybashify"]
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64", "osx-arm64", "win-64"]
[tool.pixi.pypi-dependencies]
pybashify = { path = ".", editable = true }
# [tool.pixi.tasks]
[tool.pixi.feature.fdev.tasks]
build = "hatch build ./dist"
[tool.pixi.environments]
dev = { features = ["fdev"] }
prod = { features = [] }
[tool.ruff]
# Specify the version here where it is actually specified above
target-version = "py310"