Skip to content
This repository has been archived by the owner on Aug 26, 2023. It is now read-only.

Commit

Permalink
ease pinned requirements, fixes #40
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Simon committed May 15, 2018
1 parent d9e200d commit 4e90337
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion coinmarketcap/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

__title__ = 'coinmarketcap'
__version__ = '5.0.2'
__version__ = '5.0.3'
__author__ = 'Martin Simon <[email protected]>'
__repo__ = 'https://github.com/barnumbirr/coinmarketcap'
__license__ = 'Apache v2.0 License'
Expand Down
14 changes: 8 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,20 @@
setup(
name = 'coinmarketcap',
packages = ['coinmarketcap'],
version = '5.0.2',
version = '5.0.3',
description = 'Python wrapper around the coinmarketcap.com API.',
author = 'Martin Simon',
author_email = '[email protected]',
url = 'https://github.com/barnumbirr/coinmarketcap',
project_urls={ # Optional
project_urls={
'Bug Reports': 'https://github.com/barnumbirr/coinmarketcap/issues',
'Funding': 'https://github.com/barnumbirr/coinmarketcap#buy-me-a-coffee',
'Source': 'https://github.com/barnumbirr/coinmarketcap',
},
'Buy me a coffee': 'https://github.com/barnumbirr/coinmarketcap#buy-me-a-coffee',
},
license = 'Apache v2.0 License',
install_requires=['requests==2.18.4', 'requests_cache==0.4.13'],
install_requires=[
'requests>=2.18.4',
'requests_cache>=0.4.13'
],
keywords = ['cryptocurrency', 'API', 'coinmarketcap','BTC', 'Bitcoin', 'LTC', 'Litecoin', 'XRP', 'Ripple', 'ETH', 'Ethereum '],
classifiers=[
'License :: OSI Approved :: Apache Software License',
Expand Down

0 comments on commit 4e90337

Please sign in to comment.