forked from opensanctions/yente
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (62 loc) · 1.65 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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="yente",
version="3.6.1",
url="https://opensanctions.org/docs/api/",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
author="OpenSanctions",
author_email="[email protected]",
packages=find_packages(exclude=["examples", "tests"]),
namespace_packages=[],
install_requires=[
"followthemoney==3.5.2",
"nomenklatura==3.3.9",
"asyncstdlib==3.10.8",
"aiocron==1.8",
"aiocsv==1.2.4",
"aiofiles==23.2.1",
"types-aiofiles>=23.1.0.4,<23.2",
"aiohttp[speedups]==3.8.5",
"elasticsearch[async]==8.9.0",
"fastapi==0.101.0",
"uvicorn[standard]==0.23.2",
"python-multipart==0.0.6",
"email-validator==2.0.0.post2",
"structlog==23.1.0",
"pyicu==2.11",
"jellyfish==1.0.0",
"orjson==3.9.4",
"text-unidecode==1.3",
"click==8.1.6",
"normality==2.4.0",
"languagecodes==1.1.1",
"countrynames==1.15.2",
"fingerprints==1.1.0",
"pantomime==0.6.1",
],
extras_require={
"dev": [
"pip>=10.0.0",
"bump2version",
"wheel>=0.29.0",
"twine",
"mypy",
"httpx",
"pytest",
"pytest-cov",
"pytest-asyncio",
"flake8>=2.6.0",
"black",
],
},
entry_points={
"console_scripts": [
"yente = yente.cli:cli",
],
},
zip_safe=False,
)