-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
55 lines (49 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
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "actualpy"
description = "Implementation of the Actual API to interact with Actual over Python."
readme = "README.md"
authors = [
{ name = "Brunno Vanelli", email = "[email protected]" }
]
requires-python = ">=3.9.0"
dependencies = [
"requests>=2",
"sqlmodel>=0.0.18",
"pydantic>=2,<3",
"sqlalchemy>=2",
"proto-plus>=1",
"protobuf>=4",
"cryptography>=42",
"python-dateutil>=2.9.0",
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = ["actual", "actualbudget", "api", "client"]
dynamic = ["version"]
[project.optional-dependencies]
cli = [
"rich>=13",
"typer>=0.12.0",
"pyyaml>=6",
]
[project.urls]
Homepage = "https://github.com/bvanelli/actualpy"
Documentation = "https://actualpy.readthedocs.io/"
Repository = "https://github.com/bvanelli/actualpy.git"
"Bug Tracker" = "https://github.com/bvanelli/actualpy/issues"
[project.scripts]
actualpy = "actual.cli.main:app"
[tool.setuptools.packages.find]
exclude = ["docs*", "tests*", "examples*"]
[tool.setuptools.dynamic]
version = { attr = "actual.version.__version__" }