forked from uJhin/python-upbit-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
53 lines (47 loc) · 1.57 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
49
50
51
52
53
from setuptools import setup
from setuptools import find_packages
from upbit import pkginfo
with open('README.rst') as readme:
long_description = readme.read()
setup(
name = pkginfo.PACKAGE_NAME,
version = pkginfo.CURRENT_VERSION,
packages = find_packages(),
install_requires = [
'bravado>=11.0.2'
, 'PyJWT>=2.4.0'
, 'websockets>=10.3'
],
extras_require = {
'fido': [
'fido>=4.2.1'
]
},
python_requires = '>=3.8',
classifiers = [
'Programming Language :: Python :: 3.8'
, 'Programming Language :: Python :: 3.9'
, 'Programming Language :: Python :: 3.10'
, 'Programming Language :: Python :: 3.11'
, 'Programming Language :: Python :: 3.12'
],
keywords = [
'Upbit'
, 'upbit'
, 'upbit-client'
, 'Upbit-Client'
, 'Upbit_client'
, 'Upbit-api-connector'
, 'upbit-api-connector'
, 'Upbit_api_connector'
, 'upbit_api_connector'
],
url = 'https://github.com/uJhin/upbit-client',
download_url = 'https://github.com/uJhin/upbit-client/releases',
license = 'MIT License',
author = 'ujhin',
author_email = '[email protected]',
description = 'Upbit OPEN API Client',
long_description_content_type = 'text/x-rst',
long_description = long_description
)