-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (45 loc) · 1003 Bytes
/
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
[build-system]
requires = ["setuptools>=68.0.0", "wheel", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["shiny_invoice"]
[tool.setuptools_scm]
[project]
name = "shiny-invoice"
description = "Simply manage invoices"
dynamic = ["version"]
requires-python = ">=3.12"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Financial :: Accounting",
]
keywords = [
"invoice",
"finance",
"accounting",
]
dependencies = [
"shiny",
"click",
"ruamel.yaml",
"pandas",
"pydantic",
"tinydb"
]
[project.optional-dependencies]
dev = [
"black",
"pylint",
"pre-commit"
]
[project.scripts]
shiny-invoice = "shiny_invoice.shiny_invoice:cli"
[tool.black]
line-length = 100
target-version = ['py312']