From 29ea396dd3835b90ee429668e993def777b0634a Mon Sep 17 00:00:00 2001 From: EsGeh Date: Wed, 27 Nov 2019 11:49:26 +0100 Subject: [PATCH] consistently name script like the package --- README.md | 4 ++-- bin/{get_deps => git_deps_py} | 0 setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) rename bin/{get_deps => git_deps_py} (100%) diff --git a/README.md b/README.md index dc09efa..65590ef 100644 --- a/README.md +++ b/README.md @@ -24,10 +24,10 @@ consider `example` your git project with dependencies. Lets cd into it: Open it in your favourite editor to see how it is constructed. Let's install the dependencies: - $ ../bin/get_deps + $ ../bin/git_deps_py This will clone the git repositories specified in `dependencies.conf` into a folder (default: `./dependencies/`). Also, for each dependency the specified versions (git hash) are "checked out" and the init script (if specified) is run. To see default settings and learn the command line arguments, run: - $ ../bin/get_deps --help + $ ../bin/git_deps_py --help diff --git a/bin/get_deps b/bin/git_deps_py similarity index 100% rename from bin/get_deps rename to bin/git_deps_py diff --git a/setup.py b/setup.py index 08d2e55..e520449 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup -setup(name='get_deps_py', +setup(name='git_deps_py', version='0.1', description='manage dependencies to other git repositories', classifiers=[ @@ -12,7 +12,7 @@ author='Samuel Gfrörer', author_email='SamuelGfroerer@googlemail.com', license='MIT', - scripts=['bin/get_deps'], + scripts=['bin/git_deps_py'], packages=[], python_requires='>=3', zip_safe=False)