forked from opensanctions/opensanctions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
69 lines (66 loc) · 1.62 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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="opensanctions",
version="3.2.0",
url="https://opensanctions.org",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
author="OpenSanctions",
author_email="info@opensanctions.org",
packages=find_packages(exclude=["ez_setup", "examples", "test"]),
namespace_packages=[],
package_data={
"opensanctions": [
"*.yml",
"*.yaml",
"*.ini",
"*.mako",
"*.ijson",
"migrate/versions/*.py",
]
},
zip_safe=False,
install_requires=[
"followthemoney >= 3.2.0",
"nomenklatura >= 2.7.5, < 3.0.0",
"orjson == 3.8.6",
"zavod >= 0.5.0",
"pantomime",
"sqlalchemy[mypy]",
"requests[security]",
"types-requests",
"psycopg2-binary",
"certifi",
"addressformatting",
"prefixdate",
"datapatch",
"structlog",
"colorama",
"pyicu < 2.11.0",
"openpyxl == 3.1.0",
"xlrd",
"lxml",
"lxml-stubs",
"awscli",
],
extras_require={
"dev": [
"sphinx",
"bump2version",
"wheel>=0.29.0",
"twine",
"black",
"flake8>=2.6.0",
"sphinx-rtd-theme",
],
},
entry_points={
"console_scripts": [
"opensanctions = opensanctions.cli:cli",
"osanc = opensanctions.cli:cli",
],
},
)