[cs615asa] [git commit] CS615 EBS-BACKUP; backup a directory into Elastic Block Storage (EBS) branch main updated. 1fa3c1be690c160912e90e574abb84d4c6839343

Git Owner jschauma at stevens.edu
Wed May 5 15:54:33 EDT 2021


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CS615 EBS-BACKUP; backup a directory into Elastic Block Storage (EBS)".

The branch, main has been updated
       via  1fa3c1be690c160912e90e574abb84d4c6839343 (commit)
       via  521d297f81348bbc18f2e323f3c314a0efbe5ce6 (commit)
      from  3fe1a2f3516ea0765bdd6f968422a09d0ef2965e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 1fa3c1be690c160912e90e574abb84d4c6839343
Author: Hayden Daly <hdaly1 at stevens.edu>
Date:   Wed May 5 11:16:19 2021 -0400

    update readme installation

diff --git a/README b/README
index a427320..cc665a7 100644
--- a/README
+++ b/README
@@ -20,6 +20,7 @@ automatically to cs615asa at lists.stevens.edu.
 To install the `ebs-backup(1)` tool, you must have pip. To install, run:
 
 ```sh
+pip install setuptools
 pip install -e .
 ```
 

commit 521d297f81348bbc18f2e323f3c314a0efbe5ce6
Author: Hayden Daly <hdaly1 at stevens.edu>
Date:   Wed May 5 11:07:28 2021 -0400

    fix src error in packaging

diff --git a/setup.py b/setup.py
index f172395..02ef492 100644
--- a/setup.py
+++ b/setup.py
@@ -18,10 +18,11 @@ setup (
     install_requires = all_requirements, # list of all packages
     python_requires = ">=3.7", # any python greater than 3.7
     package_dir={'': 'src'},
+    packages=find_namespace_packages('src'),
     author = "2021S CS615",
     entry_points = {
         'console_scripts': [
-            'ebs-backup=src.main:main'
+            'ebs-backup=main:main'
         ]
     },
     license="MIT",
diff --git a/src/__init__.py b/src/__init__.py
index 4047644..fae1e30 100644
--- a/src/__init__.py
+++ b/src/__init__.py
@@ -1,4 +1,6 @@
 # -*- coding: utf-8 -*-
 
 from .argument_parsing import parse_args
-from .env_parsing import parse_env 
\ No newline at end of file
+from .env_parsing import parse_env 
+from .ec2 import EC2
+from .volume import Volume
\ No newline at end of file

-----------------------------------------------------------------------

Summary of changes:
 README          | 1 +
 setup.py        | 3 ++-
 src/__init__.py | 4 +++-
 3 files changed, 6 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
CS615 EBS-BACKUP; backup a directory into Elastic Block Storage (EBS)


More information about the cs615asa mailing list