-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
44 lines (42 loc) · 1.25 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
from setuptools import setup, find_packages # type: ignore
with open("README.md") as f:
long_description = f.read()
setup(
name="alephclient",
version="2.6.0",
description="Command-line client for Aleph API",
long_description=long_description,
long_description_content_type="text/markdown",
author="Organized Crime and Corruption Reporting Project",
author_email="[email protected]",
url="http://github.com/alephdata/alephclient",
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
packages=find_packages(exclude=["alephclient.tests"]),
install_requires=[
"banal >= 1.0.1",
"pyyaml",
"requests >= 2.21.0",
"requests_toolbelt >= 0.9.1",
"click >= 7.0",
],
extras_require={
"dev": [
"mypy",
"wheel",
"pytest",
"pytest-mock >= 1.10.0",
"types-requests",
"types-setuptools",
]
},
entry_points={
"console_scripts": ["alephclient = alephclient.cli:cli"],
},
)