Skip to content
Permalink
635e8353db
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
19 lines (16 sloc) 552 Bytes
from setuptools import setup
setup(name='git_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/git_deps_py'],
packages=[],
python_requires='>=3',
zip_safe=False)