-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
73 lines (70 loc) · 2.05 KB
/
setup.py
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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="nomenklatura",
version="3.14.0",
description="Make record linkages in followthemoney data.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="data mapping identity followthemoney linkage record",
author="Friedrich Lindenberg",
author_email="[email protected]",
url="https://github.com/opensanctions/nomenklatura",
license="MIT",
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
namespace_packages=[],
include_package_data=True,
package_data={"": ["nomenklatura/data/*", "nomenklatura/py.typed"]},
zip_safe=False,
install_requires=[
"followthemoney >= 3.5.6, < 4.0.0",
"rigour >= 0.5.3, < 1.0.0",
"fingerprints >= 1.2.0, < 2.0.0",
"shortuuid >= 1.0.11, < 2.0.0",
"jellyfish >= 1.0.0, < 2.0.0",
"rich >= 10.9.0, < 14.0.0",
"textual >= 0.19.0, < 1.0.0",
"sqlalchemy >= 2.0.0",
"scikit-learn == 1.5.0",
"pydantic > 2.0.0, < 3.0.0",
"click < 9.0.0",
"lxml > 4.0.0, < 6.0.0",
],
tests_require=[],
entry_points={
"console_scripts": [
"nk = nomenklatura.cli:cli",
"nomenklatura = nomenklatura.cli:cli",
],
},
extras_require={
"dev": [
"wheel>=0.29.0",
"twine",
"mypy",
"flake8>=2.6.0",
"pytest",
"pytest-cov",
"coverage>=4.1",
"types-setuptools",
"types-requests",
"types-redis",
"lxml-stubs",
"requests-mock",
"fakeredis",
"plyvel < 2.0.0",
"redis > 5.0.0, < 6.0.0",
"tantivy < 1.0.0",
],
"leveldb": [
"plyvel < 2.0.0",
],
"redis": [
"redis > 5.0.0, < 6.0.0",
],
"tantivy": [
"tantivy < 1.0.0",
],
},
)