-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
74 lines (66 loc) · 1.73 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "rigour"
version = "0.8.2"
description = "Financial crime domain data validation and normalization library."
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "OpenSanctions", email = "[email protected]" }]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"babel >= 2.9.1, < 3.0.0",
"pyyaml >= 5.0.0, < 7.0.0",
"banal >= 1.0.6, < 1.1.0",
"normality >= 2.4.0, < 3.0.0",
"jellyfish >= 1.0.0, < 2.0.0",
"rapidfuzz >= 3.9.0, < 4.0.0",
"fingerprints >= 1.0.1, < 2.0.0",
"python-stdnum >= 1.16, < 2.0.0",
"jinja2 >= 3.1.0, < 4.0.0",
"pytz >= 2021.1",
]
[project.urls]
Documentation = "https://opensanctions.github.io/rigour/"
Repository = "https://github.com/opensanctions/rigour.git"
Issues = "https://github.com/opensanctions/rigour/issues"
[project.optional-dependencies]
dev = [
"pip>=10.0.0",
"bump2version",
"wheel>=0.29.0",
"black",
"build",
"twine",
"mypy",
"pytest",
"pytest-cov",
"types-PyYAML",
"types-requests",
"types-setuptools",
"types-PyYAML",
"coverage>=4.1",
]
docs = [
"pillow",
"cairosvg",
"mkdocs",
"mkdocstrings[python]",
"mkdocs-material",
]
[project.entry-points."babel.extractors"]
[tool.hatch.build.targets.sdist]
only-include = ["rigour", "LICENSE", "README.md"]
[tool.distutils.bdist_wheel]
universal = true
[tool.coverage.run]
branch = true
[tool.coverage.report]
omit = ["rigour/langs/generate.py"]