forked from jona799t/python-hotbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1.12 KB
/
setup.py
File metadata and controls
30 lines (28 loc) · 1.12 KB
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
from setuptools import setup, find_packages
from pathlib import Path
VERSION = '0.0.6'
DESCRIPTION = "A Python package for the cryptocurrency exchange Hotbit that doesn't require an API Key, making it available to everyone"
long_description = (Path(__file__).parent / "readme.md").read_text()
# Setting up
setup(
name="hotbit",
version=VERSION,
author="jona799t",
#author_email="<not@available.com>",
url = 'https://github.com/jona799t/python-hotbit',
description=DESCRIPTION,
long_description=long_description,
license_files = ('LICENSE.txt',),
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=["pycryptodome", "anticaptchaofficial", "twocaptcha", "2captcha-python", "requests", "requestsWS==0.0.16"],
keywords=['hotbit', 'api', 'crypto', 'exchange'],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)