batchfetch 1.0.0__tar.gz → 1.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (21) hide show
  1. {batchfetch-1.0.0/batchfetch.egg-info → batchfetch-1.0.1}/PKG-INFO +3 -1
  2. {batchfetch-1.0.0 → batchfetch-1.0.1/batchfetch.egg-info}/PKG-INFO +3 -1
  3. {batchfetch-1.0.0 → batchfetch-1.0.1}/setup.py +3 -1
  4. {batchfetch-1.0.0 → batchfetch-1.0.1}/.gitignore +0 -0
  5. {batchfetch-1.0.0 → batchfetch-1.0.1}/LICENSE +0 -0
  6. {batchfetch-1.0.0 → batchfetch-1.0.1}/README.md +0 -0
  7. {batchfetch-1.0.0 → batchfetch-1.0.1}/batchfetch/__init__.py +0 -0
  8. {batchfetch-1.0.0 → batchfetch-1.0.1}/batchfetch/batchfetch_base.py +0 -0
  9. {batchfetch-1.0.0 → batchfetch-1.0.1}/batchfetch/batchfetch_cli.py +0 -0
  10. {batchfetch-1.0.0 → batchfetch-1.0.1}/batchfetch/batchfetch_git.py +0 -0
  11. {batchfetch-1.0.0 → batchfetch-1.0.1}/batchfetch/helpers.py +0 -0
  12. {batchfetch-1.0.0 → batchfetch-1.0.1}/batchfetch.egg-info/SOURCES.txt +0 -0
  13. {batchfetch-1.0.0 → batchfetch-1.0.1}/batchfetch.egg-info/dependency_links.txt +0 -0
  14. {batchfetch-1.0.0 → batchfetch-1.0.1}/batchfetch.egg-info/entry_points.txt +0 -0
  15. {batchfetch-1.0.0 → batchfetch-1.0.1}/batchfetch.egg-info/requires.txt +0 -0
  16. {batchfetch-1.0.0 → batchfetch-1.0.1}/batchfetch.egg-info/top_level.txt +0 -0
  17. {batchfetch-1.0.0 → batchfetch-1.0.1}/run_tests.sh +0 -0
  18. {batchfetch-1.0.0 → batchfetch-1.0.1}/setup.cfg +0 -0
  19. {batchfetch-1.0.0 → batchfetch-1.0.1}/tests/data/test-md5sum.txt +0 -0
  20. {batchfetch-1.0.0 → batchfetch-1.0.1}/tests/data/test-run_simple.sh +0 -0
  21. {batchfetch-1.0.0 → batchfetch-1.0.1}/tests/test_helpers.py +0 -0
@@ -1,8 +1,10 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: batchfetch
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
+ Summary: Efficiently clone and pull multiple Git repositories.
4
5
  Home-page: https://github.com/jamescherti/batchfetch
5
6
  Author: James Cherti
7
+ License: GPLv3
6
8
  Classifier: Development Status :: 5 - Production/Stable
7
9
  Classifier: License :: OSI Approved :: GNU General Public License (GPL)
8
10
  Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
@@ -1,8 +1,10 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: batchfetch
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
+ Summary: Efficiently clone and pull multiple Git repositories.
4
5
  Home-page: https://github.com/jamescherti/batchfetch
5
6
  Author: James Cherti
7
+ License: GPLv3
6
8
  Classifier: Development Status :: 5 - Production/Stable
7
9
  Classifier: License :: OSI Approved :: GNU General Public License (GPL)
8
10
  Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
@@ -22,8 +22,10 @@ from setuptools import find_packages, setup
22
22
 
23
23
  setup(
24
24
  name="batchfetch",
25
- version="1.0.0",
25
+ version="1.0.1",
26
26
  packages=find_packages(),
27
+ description="Efficiently clone and pull multiple Git repositories.",
28
+ license="GPLv3",
27
29
  long_description=((Path(__file__).parent.resolve().joinpath("README.md"))
28
30
  .read_text(encoding="utf-8")),
29
31
  long_description_content_type="text/markdown",
File without changes
File without changes
File without changes
File without changes
File without changes