-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (43 loc) · 1.06 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
[project]
name = "beancount-importer"
version = "0.3.0"
description = "Various beancount importers"
requires-python = ">=3.11,<4.0"
license = { text = "MIT" }
readme = "README.rst"
authors = [
{ name = "Kevin James", email = "beancount-importer@thekev.in>" },
]
dependencies = [
"beancount>=3.0.0,<4.0.0",
"beangulp>=0.2.0,<0.3.0",
"openpyxl>=3.0.0,<4.0.0",
"py-pdf-parser>=0.10.0,<0.14.0",
"python-dateutil>=2.0.0,<3.0.0",
"sh>=2.0.0,<3.0.0",
"titlecase>=2.0.0,<3.0.0",
]
[project.urls]
repository = "https://github.com/TheKevJames/beancount-importer"
[tool.poetry]
requires-poetry = ">=2.0"
package-mode = true
packages = [
{ include = "beancount_importer", format = ["sdist", "wheel"] },
]
[tool.poetry.scripts]
bean-import = "beancount_importer.cli:run"
[[tool.mypy.overrides]]
module = [
'beancount.core.*',
'py_pdf_parser.*',
'sh.*',
'titlecase.*',
]
ignore_missing_imports = true
[[tool.poetry.source]]
name = "pypi"
priority = "primary"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"