forked from opensanctions/opensanctions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 860 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 860 Bytes
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
from setuptools import setup, find_packages
setup(
name='opensanctions',
version='1.99',
author='Organized Crime and Corruption Reporting Project',
author_email='data@occrp.org',
url='https://github.com/alephdata/opensanctions',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'test']),
namespace_packages=[],
package_data={
'opensanctions': ['config/*.yml']
},
zip_safe=False,
install_requires=[
'followthemoney >= 1.21.2',
'balkhash[sql] >= 1.0.2',
'memorious >= 1.2.3',
'alephclient >= 1.2.1',
'countrynames',
'xlrd',
],
entry_points={
'memorious.plugins': [
'opensanctions = opensanctions:init'
],
'console_scripts': [
'osanc-dump = opensanctions:cli',
]
}
)