-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
72 lines (69 loc) · 1.88 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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="yente",
version="4.1.0",
url="https://opensanctions.org/docs/api/",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
author="OpenSanctions",
author_email="info@opensanctions.org",
packages=find_packages(exclude=["examples", "tests"]),
namespace_packages=[],
install_requires=[
"followthemoney==3.7.4",
"nomenklatura==3.13.1",
"rigour==0.6.1",
"asyncstdlib==3.13.0",
"aiocron==1.8",
"aiocsv==1.3.2",
"aiofiles==24.1.0",
"aiohttp[speedups]==3.10.10",
"elasticsearch[async]==8.15.1",
"opensearch-py[async]==2.7.1",
"boto3>=1.34.144,<1.36.0",
"fastapi==0.115.4",
"uvicorn[standard]==0.32.0",
"httpx[http2]==0.27.2",
"python-multipart==0.0.17",
"email-validator==2.2.0",
"structlog==24.4.0",
"pyicu==2.14",
"jellyfish==1.1.0",
"orjson==3.10.11",
"text-unidecode==1.3",
"click==8.1.6",
"normality==2.5.0",
"countrynames==1.16.2",
"fingerprints==1.2.3",
"pantomime==0.6.1",
"cryptography==43.0.3",
],
extras_require={
"dev": [
"pip>=10.0.0",
"bump2version",
"wheel>=0.29.0",
"ruff>=0.4.0,<1.0.0",
"twine",
"mypy",
"pytest",
"pytest-cov",
"pytest-asyncio",
"pytest-httpx",
"anyio==4.6.2.post1",
"flake8>=2.6.0",
"black",
"types-aiofiles>=24.0,<25.0",
"boto3-stubs",
],
},
entry_points={
"console_scripts": [
"yente = yente.cli:cli",
],
},
zip_safe=False,
)