-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 791 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
setup(
name="KucoinPy",
version="0.0.3b1",
description="Probably the fastest kucoin API wrapper in python",
author="Parth Mittal",
author_email="parth@privatepanda.co",
url="https://www.github.com/PrivatePandaCO/KucoinPy",
license="GNU GENERAL PUBLIC LICENSE Version 2",
packages=["KucoinPy"],
install_requires=["orjson", "requests", "pyloggor"],
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
project_urls={
"Documentation": "https://github.com/PrivatePandaCO/KucoinPy/blob/master/README.md",
"Github": "https://github.com/PrivatePandaCO/KucoinPy",
"Changelog": "https://github.com/PrivatePandaCO/KucoinPy/blob/master/changelog.md"
},
)