-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1.12 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
[tool.poetry]
name = "finrope"
version = "0.1.0"
description = "FinRope: Financial Risk Patterns"
authors = ["Russell Jurney <rjurney@graphlet.ai>"]
license = "MIT"
readme = "README.md"
packages = [{include = "finrope"}]
[tool.poetry.urls]
"Project Homepage" = "https://finrope.org"
"Blog Post" = "https://blog.graphlet.ai/financial-crime-and-corruption-network-motifs-4cf2e8e10eb5"
"Code Repository" = "https://github.com/Graphlet-AI/FinRope"
"Bug Tracker" = "https://github.com/Graphlet-AI/FinRope/issues"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
followthemoney = "^3.8.0"
gitpython = "^3.1.44"
[tool.poetry.group.dev.dependencies]
black = "^25.1.0"
flake8 = "^7.1.1"
ipython = "^8.32.0"
isort = "^6.0.0"
pytest = "^8.3.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ["py311"]
include = ["finrope", "test"]
[tool.isort]
profile = "black"
src_paths = ["finrope", "test"]
[tool.mypy]
python_version = "3.11"
mypy_path = ["finrope", "test"]
warn_return_any = true
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true