-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 953 Bytes
/
pyproject.toml
File metadata and controls
41 lines (34 loc) · 953 Bytes
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
[project]
name = "criclive"
version = "0.4"
description = "Live Cricket Scores in Command Line."
authors = [{ name = "Amit Kumar", email = "[email protected]" }]
license = { text = "MIT" }
keywords = ["Cricket", "score", "scores", "cli", "live"]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"beautifulsoup4>=4.12",
"requests>=2.31",
"tabulate>=0.9",
"textual>=3.0",
]
[project.urls]
Homepage = "https://github.com/aktech/criclive"
[project.scripts]
criclive = "criclive.tui:main"
criclive-plain = "criclive.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64", "linux-aarch64", "osx-arm64", "osx-64"]
[tool.pixi.pypi-dependencies]
criclive = { path = ".", editable = true }
[tool.pixi.tasks]
start = "criclive"
test = "python -m pytest tests.py"
[tool.pixi.dependencies]
python = ">=3.10"
pytest = ">=8"