-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
56 lines (45 loc) · 1.25 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
[tool.poetry]
name = "quiffen"
version = "2.0.13"
description = "Quiffen"
authors = ["Isaac Harris-Holt <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.rst"
homepage = "https://github.com/isaacharrisholt/quiffen"
repository = "https://github.com/isaacharrisholt/quiffen"
documentation = "https://quiffen.readthedocs.io/en/latest/"
keywords = ['qif', 'finance', 'data processing']
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
[tool.poetry.dependencies]
python = "^3.8"
pydantic = "^1.10.2"
pandas = "^1.5.1"
python-dateutil = "^2.8.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
black = "^23.1.0"
isort = "^5.12.0"
ruff = "^0.0.254"
tox = "^4.4.6"
pyright = "^1.1.296"
pre-commit = "^3.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
include_trailing_comma = true
[tool.ruff]
line-length = 88
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"] # Ignore unused imports in __init__.py
[tool.pyright]
pythonVersion = "3.8"
[tool.pytest.ini_options]
testpaths = ["tests"]