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)