-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.48 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
[project]
name = "cashd"
authors = [
{name = "Vitor F. Lins", email = "[email protected]"},
]
description = "Manage a simple cash flow operations on different accounts locally."
requires-python = ">=3.8"
keywords = ["cash-flow", "financial", "fiado", "sale-on-credit"]
license = {file = "LICENSE"}
readme = "README.md"
classifiers = [
"Topic :: Office/Business :: Financial :: Accounting",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Customer Service",
"Natural Language :: Portuguese (Brazilian)",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"License :: OSI Approved :: MIT License"
]
version = "0.2.1.1"
dependencies = [
"taipy==3.1.0",
"SQLAlchemy==2.*",
"pywebview>=5.0",
"phonenumbers>=8.13.31",
"pandas>=2.2.0",
"pyshortcuts==1.9.0",
"plotly>=5.22.0"
]
[project.optional-dependencies]
dev=[
"pytest-cov>=5.0.0",
"black>=24.4.2",
"ipykernel",
"nbformat"
]
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project.gui-scripts]
cashd = "cashd.startup:window"
[tool.pytest.ini_options]
testpaths = "tests"
pythonpath = "src"
addopts = "--cov=src --cov-report html"
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false