Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
consistently name script like the package
  • Loading branch information
EsGeh authored and EsGeh committed Nov 27, 2019
1 parent 155514b commit 29ea396
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -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
File renamed without changes.
4 changes: 2 additions & 2 deletions 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=[
Expand All @@ -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)
Expand Down

0 comments on commit 29ea396

Please sign in to comment.