-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added support for Python 3.7 and 3.8, respectively.
- Loading branch information
Showing
2 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,18 +17,20 @@ | |
|
||
setup( | ||
name='spurplus', | ||
version='2.3.3', | ||
version='2.3.4', # Do not forget to update the changelog! | ||
description='Manage remote machines and file operations over SSH.', | ||
long_description=long_description, | ||
url='http://github.com/Parquery/spurplus', | ||
author='Marko Ristin', | ||
author_email='[email protected]', | ||
# yapf: disable | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8' | ||
], | ||
# yapf: enable | ||
license='License :: OSI Approved :: MIT License', | ||
keywords='ssh sftp spur paramiko execute remote commands modify files', | ||
packages=find_packages(exclude=['tests']), | ||
|