-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.09 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
from setuptools import setup, find_packages # type: ignore
with open("README.md") as f:
long_description = f.read()
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name="followthemoney-predict",
version="0.10.1",
author="Organized Crime and Corruption Reporting Project",
author_email="data@occrp.org",
url="https://github.com/alephdata/followthemoney-predict/",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
packages=find_packages(
exclude=[
"ez_setup",
"examples",
"tests",
"cache",
"data",
"experiments",
"models",
]
),
namespace_packages=[],
include_package_data=True,
zip_safe=False,
install_requires=requirements,
entry_points={
"console_scripts": [
"ftm-predict = followthemoney_predict.cli:main",
"followthemoney-predict = followthemoney_predict.cli:main",
],
},
tests_require=["coverage", "nose"],
)