File tree Expand file tree Collapse file tree 1 file changed +12
-5
lines changed
Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change 22from setuptools import setup
33from setuptools import find_packages
44
5- import upbit
5+ from upbit import pkginfo
66
77
8- version = upbit .__version__
98with open ('README.rst' ) as readme :
109 long_description = readme .read ()
1110
1211
1312setup (
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' ,
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' ,
You can’t perform that action at this time.
0 commit comments