-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 818 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 818 Bytes
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bods-ftm"
version = "0.1.0"
description = "Bidirectional converter between Beneficial Ownership Data Standard (BODS) v0.4 and the FollowTheMoney data model used by OpenSanctions and OpenAleph"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "Stephen Abbott Pugh"},
]
dependencies = [
"click>=8.1",
"followthemoney>=3.5,<4",
"python-dateutil>=2.8",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"bods-v04-fixtures>=0.1.1,<0.2",
"pytest-bods-v04-fixtures>=0.1.1,<0.2",
]
[project.scripts]
bods-ftm = "bods_ftm.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]