From b34c28a3c8282d89ef2e5a321ea2c844ddff0095 Mon Sep 17 00:00:00 2001 From: Jordan Maynor Date: Fri, 9 Aug 2024 09:48:34 -0500 Subject: [PATCH] Upped version number and corrected package name --- README.md | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4a0ddc8..fd11264 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Takes standard paramers expected for connecting to a remote FTP/SFTP server as w | - | - | - | | ftp_method | str | 'ftp' or 'sftp' | | host | str | the FTP server host | -| port | int | the SFTP server port, not used with FTP | +| port | int | the FTP/SFTP server port | | user | str | username to authenticate with | | password | str | password to authenticate with | | folder | str | the folder to download the files from, usually "/out/" or "/FROM_VIP/" | diff --git a/setup.py b/setup.py index 458bbc1..e67c691 100644 --- a/setup.py +++ b/setup.py @@ -7,14 +7,14 @@ long_description = f.read() setup( - name="vippy", - version="0.1.0", + name="vipwrap", + version="0.1.2", description="Python package that allows interacting with VIP.", long_description=long_description, long_description_content_type="text/markdown", author="Jordan Maynor", author_email="jmaynor@pepsimidamerica.com", - url="https://github.com/pepsimidamerica/ezoff", + url="https://github.com/pepsimidamerica/vipwrap", packages=find_packages(), classifiers=[ "Programming Language :: Python :: 3",