forked from safe-global/safe-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (44 loc) · 1.37 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
45
46
47
48
import setuptools
from safe_cli.version import version
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="safe_cli",
version=version,
author="Uxío Fuentefría",
author_email="[email protected]",
description="Command Line Interface for Safe",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/gnosis/safe-cli",
download_url="https://github.com/gnosis/safe-cli/releases",
license="MIT",
test_suite="tests",
install_requires=[
"art>=6",
"colorama>=0.4",
"prompt_toolkit>=3",
"pygments>=2",
"requests>=2",
"safe-eth-py==6.0.0b8",
"tabulate>=0.8",
],
extras_require={"ledger": ["ledgereth==0.9.1"]},
packages=setuptools.find_packages(),
entry_points={
"console_scripts": [
"safe-cli=safe_cli.main:main",
"safe-creator=safe_cli.safe_creator:main",
],
},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
)