-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (68 loc) · 1.94 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (68 loc) · 1.94 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
[project]
name = "smart_importer"
description = "Augment Beancount importers with machine learning functionality."
readme = "README.rst"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "Johannes Harms" }]
keywords = ["fava", "beancount", "accounting", "machinelearning"]
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Web Environment",
"Environment :: Console",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Office/Business :: Financial :: Accounting",
"Topic :: Office/Business :: Financial :: Investment",
]
dependencies = [
"beancount>=3",
"beangulp",
"scikit-learn>=1.0",
"numpy>=1.18.0",
"typing-extensions>=4.9",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/beancount/smart_importer"
Issues = "https://github.com/beancount/smart_importer/issues"
[tool.setuptools.packages.find]
exclude = ["tests"]
[build-system]
requires = ["setuptools>=80", "setuptools_scm[simple]>=8"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 79
[tool.mypy]
strict = true
[[tool.mypy.overrides]]
module = ["sklearn.*"]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ["beancount.*"]
follow_untyped_imports = true
[[tool.mypy.overrides]]
module = ["beangulp.*"]
follow_untyped_imports = true
[tool.ruff]
line-length = 79
[tool.ruff.lint]
extend-select = [
"I", # isort
"UP", # pyupgrade
"TC", # type-checking
]
[tool.pylint.'messages control']
disable = [
"too-few-public-methods",
"cyclic-import",
]