Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
donno2048 authored Sep 22, 2021
1 parent 42e7121 commit b0bac23
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup,find_packages
setup(
name='gitback',
version='1.0.9',
version='1.1.0',
description='Makes a backup of all your repositories and gists from GitHub',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
Expand All @@ -11,5 +11,6 @@
author='Elisha Hollander',
classifiers=['Programming Language :: Python :: 3'],
install_requires=['six==1.14.0'],
entry_points={ 'console_scripts': [ 'gitback=gitback.__init__:backup' ] }
entry_points={ 'console_scripts': [ 'gitback=gitback.__init__:backup' ] },
python_requires='>3.8'
)

0 comments on commit b0bac23

Please sign in to comment.