-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.31 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "lufah"
dynamic = ["version"]
description = "Command line utility for controlling foldingathome version 8"
keywords = ["fah", "foldingathome", "folding-at-home", "folding@home"]
license = {file = "LICENSE"}
readme = "README.md"
authors = [{name = "Kevin Bernhagen", email = "[email protected]"}]
requires-python = ">=3.8.1"
dependencies = [
"shellingham",
"typer-slim",
"websockets>=13.0.1",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.scripts]
lufah = "lufah.cli_typer:main"
[project.urls]
Homepage = "https://github.com/kbernhagen/lufah"
Changelog = "https://github.com/kbernhagen/lufah/blob/main/CHANGELOG.md"
[tool.hatch.version]
path = "src/lufah/__init__.py"
[tool.uv]
dev-dependencies = [
"argh",
"pipx",
"pylint",
"pytest",
"ruff",
"twine",
]