-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 959 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 959 Bytes
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
import setuptools
install_requires = [
"requests>=2.25.1"
]
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="shrim-py",
version="0.0.2",
author="Cryptogram Trade",
author_email="dev@cryptogram.trade",
description="The Better Shrimpy Python Client for Dev and User APIs",
license="GNU",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Cryptogram-Trade/shrim-py",
install_requires=install_requires,
packages=["shrimpy"],
python_requires=">=3.6",
keywords=[
"shrimpy", "social", "bitcoin", "client", "api",
"exchange", "crypto", "currency", "trading",
"ETH", "BTC", "3commas"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
],
)