Skip to content

Commit

Permalink
Update Setup codes
Browse files Browse the repository at this point in the history
Update Setup codes
  • Loading branch information
uJhin committed Feb 25, 2021
1 parent f356674 commit bb66a22
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,16 @@
from setuptools import setup
from setuptools import find_packages

import upbit
from upbit import pkginfo


version = upbit.__version__
with open('README.rst') as readme:
long_description = readme.read()


setup(
name = 'upbit_client',
version = version,
name = pkginfo.PACKAGE_NAME,
version = pkginfo.CURRENT_VERSION,
packages = find_packages(),
install_requires = [
'bravado>=11.0.2',
Expand All @@ -25,12 +24,20 @@
]
},
python_requires = '>=3.8',
classifiers = [
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
keywords = [
'Upbit',
'upbit',
'upbit-client',
'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',
Expand Down

0 comments on commit bb66a22

Please sign in to comment.