-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (29 loc) · 893 Bytes
/
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
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
setup(
name='followthemoney-cellebrite',
version='0.1.0',
author='Organized Crime and Corruption Reporting Project',
author_email='[email protected]',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=[],
include_package_data=True,
package_data={},
zip_safe=False,
install_requires=[
'followthemoney >= 1.29.5',
],
entry_points={
'babel.extractors': {
'ftmmodel = followthemoney.messages:extract_yaml'
},
'followthemoney.cli': {
'cellebrite = ftmcellebrite.cli:import_cellebrite',
},
},
tests_require=['coverage', 'nose']
)