-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (31 loc) · 936 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
32
from setuptools import setup
setup(
name="pyexch",
version="0.0.3",
packages=["pyexch"],
python_requires=" >=3.8.2",
install_requires=[
"coinbase >=2.1.0",
"coinbase-advanced-py >=1.2.0",
"trezor >=0.13.8",
"pyjson5 >=1.6.6",
],
extras_require={
"dev": [
# Development dependencies here
"build >=1.1.1",
"twine >=5.0.0",
"black >=24.3.0",
"flake8 >=7.0.0",
"isort >=5.13.2",
]
},
entry_points={"console_scripts": ["pyexch = pyexch.pyexch:main"]},
author="brianddk",
author_email="[email protected]",
description="Python CLI Exchange Rest Client",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/brianddk/pyexch",
license="Apache-2.0",
)