forked from codereverser/casparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
78 lines (66 loc) · 1.72 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[tool.poetry]
name = "casparser"
version = "0" # Fetched from casparser.__init__
description = "(Karvy/Kfintech/CAMS) Consolidated Account Statement (CAS) PDF parser"
authors = ["Sandeep Somasekharan <[email protected]>"]
homepage = "https://github.com/codereverser/casparser"
license = "MIT License"
readme= "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent"
]
include = [ "CHANGELOG.md" ]
[tool.poetry.dependencies]
python = "^3.8"
casparser-isin = ">=2023.9.3"
click = ">=7.0,<9.0"
colorama = "^0.4.6"
"pdfminer.six" = "20221105"
python-dateutil = "^2.8.2"
rich = "^13.5.2"
pydantic = "^2.3.0"
PyMuPDF = {version = "^1.23.0", optional = true}
[tool.poetry.extras]
mupdf = ["PyMuPDF"]
fast = ["PyMuPDF"]
[tool.poetry.dev-dependencies]
coverage = {version = "^7.1", extras=["toml"]}
ipython = "^8.1.0"
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pre-commit = "^3.4.0"
[tool.poetry.scripts]
casparser = 'casparser.cli:cli'
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "--cov=casparser --cov-report=xml --cov-report=html --exitfirst"
testpaths = [
"tests",
]
[tool.coverage.report]
omit = [
"casparser/cli.py"
]
precision = 3
[tool.coverage.run]
omit = [
"casparser/cli.py"
]
[tool.poetry-version-plugin]
source = "init"
[tool.black]
line-length = 100
target-version = ['py38']
[tool.ruff]
line-length = 100
target-version = "py38"