-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.25 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (44 loc) · 1.25 KB
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 = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "spendee-cli"
version = "0.2.0"
description = "A headless, deterministic CLI for Spendee categorization and transfer detection."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
keywords = ["spendee", "personal-finance", "categorization", "cli", "rules"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Office/Business :: Financial :: Accounting",
]
dependencies = [
"PyYAML>=6.0",
"requests>=2.31",
"typer>=0.12",
]
[project.optional-dependencies]
dev = [
"build>=1.2",
"pytest>=8.0",
"ruff>=0.9",
]
[project.scripts]
spendee = "spendee_cli.cli:app"
[project.urls]
Homepage = "https://github.com/matyaslustig/spendee-cli"
Repository = "https://github.com/matyaslustig/spendee-cli"
Issues = "https://github.com/matyaslustig/spendee-cli/issues"
[tool.setuptools.packages.find]
include = ["spendee_cli*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 110
target-version = "py311"