-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (31 loc) · 1.16 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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="followthemoney-store",
version="3.1.0",
description="Store raw and structured FollowTheMoney data from "
"different datasets in a data lake",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
author="Organized Crime and Corruption Reporting Project",
author_email="data@occrp.org",
url="http://github.com/alephdata/followthemoney-store",
license="MIT",
packages=find_packages(exclude=["ez_setup", "tests"]),
include_package_data=True,
zip_safe=True,
install_requires=[],
extras_require={"postgresql": ["psycopg2-binary>=2.7"]},
tests_require=[],
entry_points={"followthemoney.cli": ["store = ftmstore.cli:cli"]},
)