Skip to content

Commit

Permalink
Version Bump to 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bwilczynski committed Feb 6, 2023
1 parent a7ba09c commit c0a756e
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,34 +2,34 @@

import setuptools

VERSION = '0.6.1'
DESCRIPTION = 'Strava Command-Line Tools'
VERSION = "0.7.0"
DESCRIPTION = "Strava Command-Line Tools"

here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
with open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()

setuptools.setup(
python_requires='>=3.0',
name='strava-cli',
python_requires=">=3.0",
name="strava-cli",
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
long_description_content_type="text/markdown",
version=VERSION,
author='Bartlomiej Wilczynski',
author_email='[email protected]',
url='https://github.com/bwilczynski/strava-cli',
author="Bartlomiej Wilczynski",
author_email="[email protected]",
url="https://github.com/bwilczynski/strava-cli",
packages=setuptools.find_packages(),
install_requires=[
'click',
'requests',
'requests_oauthlib',
'tabulate',
'dateparser'
"click",
"requests",
"requests_oauthlib",
"tabulate",
"dateparser",
],
entry_points='''
entry_points="""
[console_scripts]
strava=strava.cli:cli
''',
""",
include_package_data=True,
)

0 comments on commit c0a756e

Please sign in to comment.