diff options
author | Harmon <Harmon758@gmail.com> | 2020-02-23 09:19:19 -0600 |
---|---|---|
committer | Harmon <Harmon758@gmail.com> | 2020-02-23 09:19:19 -0600 |
commit | d3bf396b54b02122e209a14afa9895e652fce32f (patch) | |
tree | c31a4d01566345b4c2a35d1dcaf7778af71946ef /setup.py | |
download | gitdb2.tar.gz |
v4.0.2gitdb2
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..bced0ea --- /dev/null +++ b/setup.py @@ -0,0 +1,12 @@ +from setuptools import setup + +setup( + name="gitdb2", + version="4.0.2", + author="Sebastian Thiel", + author_email="byronimo@gmail.com", + description="A mirror package for gitdb", + long_description="This is a mirror package for `gitdb <https://pypi.org/project/gitdb/>`_. Consider installing it directly instead.", + url="https://github.com/gitpython-developers/gitdb", + install_requires=["gitdb>=4.0.1"], +) |