-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (93 loc) · 2.25 KB
/
pyproject.toml
File metadata and controls
104 lines (93 loc) · 2.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[project]
name = "tuttle"
version = "2.1.0a1"
description = "Painless business planning for freelancers."
readme = "README.md"
license = "GPL-3.0-only"
requires-python = ">=3.12"
authors = [
{ name = "Christian Staudt", email = "mail@clstaudt.me" },
{ name = "Vladimir Peter" },
]
keywords = ["tuttle"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"pytest",
"pandas",
"matplotlib",
"altair",
"pydantic",
"sqlmodel",
"ics",
"tatsu<5.8",
"babel",
"loguru",
"pandera",
"weasyprint",
"faker",
"PyPDF2",
"pymupdf",
"flet>=0.81.0,<0.82.0",
"pycountry",
"icloudpy",
"alembic>=1.18.4",
"flet-charts>=0.81.0",
]
[project.urls]
Homepage = "https://github.com/tuttle-dev/tuttle"
Repository = "https://github.com/tuttle-dev/tuttle"
[dependency-groups]
dev = [
"jupyterlab",
"ipywidgets",
"bump2version",
"black",
"nbdime",
"pre-commit",
"pydocstyle",
"isort",
]
build = [
"pyinstaller",
"typer",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["tuttle"]
[tool.pytest.ini_options]
collect_ignore = ["setup.py"]
markers = ["gui: tests that open a GUI window (deselected by default)"]
addopts = "-m 'not gui'"
[tool.flake8]
exclude = ["docs", ".venv"]
[tool.isort]
include_trailing_comma = true
use_parentheses = true
multi_line_output = 1
default_section = "THIRDPARTY"
known_first_party = ["tuttle"]
known_flet = ["flet"]
known_typing = ["typing"]
sections = ["FUTURE", "TYPING", "STDLIB", "FLET", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
[tool.bumpversion]
current_version = "2.1.0a1"
commit = true
tag = true
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[[tool.bumpversion.files]]
filename = "tuttle/__init__.py"
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'