forked from uJhin/python-upbit-client
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
51 lines (45 loc) · 1.45 KB
/
Copy pathsetup.py
File metadata and controls
51 lines (45 loc) · 1.45 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
fromsetuptoolsimportsetup
fromsetuptoolsimportfind_packages
fromupbitimportpkginfo
withopen('README.rst') asreadme:
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',
],
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='ujhin942@gmail.com',
description='Upbit OPEN API Client',
long_description_content_type='text/x-rst',
long_description=long_description
)