Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
proper python package, installable via pip
  • Loading branch information
EsGeh authored and EsGeh committed Nov 27, 2019
1 parent fa8f7cb commit 155514b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 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:

$ ../get_deps.py
$ ../bin/get_deps

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:

$ ../get_deps.py --help
$ ../bin/get_deps --help
File renamed without changes.
19 changes: 19 additions & 0 deletions setup.py
@@ -0,0 +1,19 @@

from setuptools import setup

setup(name='get_deps_py',
version='0.1',
description='manage dependencies to other git repositories',
classifiers=[
'Development Status :: experimental',
'Programming Language :: Python :: 3.7',
],
url='https://github.molgen.mpg.de/EditionOpenAccess/git_deps_py',
author='Samuel Gfrörer',
author_email='SamuelGfroerer@googlemail.com',
license='MIT',
scripts=['bin/get_deps'],
packages=[],
python_requires='>=3',
zip_safe=False)

0 comments on commit 155514b

Please sign in to comment.