Skip to content

Commit bb66a22

Browse files
committed
Update Setup codes
Update Setup codes
1 parent f356674 commit bb66a22

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

setup.py

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,16 @@
22
from setuptools import setup
33
from setuptools import find_packages
44

5-
import upbit
5+
from upbit import pkginfo
66

77

8-
version = upbit.__version__
98
with open('README.rst') as readme:
109
long_description = readme.read()
1110

1211

1312
setup(
14-
name = 'upbit_client',
15-
version = version,
13+
name = pkginfo.PACKAGE_NAME,
14+
version = pkginfo.CURRENT_VERSION,
1615
packages = find_packages(),
1716
install_requires = [
1817
'bravado>=11.0.2',
@@ -25,12 +24,20 @@
2524
]
2625
},
2726
python_requires = '>=3.8',
27+
classifiers = [
28+
'Programming Language :: Python :: 3.8',
29+
'Programming Language :: Python :: 3.9'
30+
],
2831
keywords = [
2932
'Upbit',
3033
'upbit',
3134
'upbit-client',
3235
'Upbit-Client',
33-
'Upbit_client'
36+
'Upbit_client',
37+
'Upbit-api-connector',
38+
'upbit-api-connector',
39+
'Upbit_api_connector',
40+
'upbit_api_connector'
3441
],
3542
url = 'https://github.com/uJhin/upbit-client',
3643
download_url = 'https://github.com/uJhin/upbit-client/releases',

0 commit comments

Comments
 (0)