summaryrefslogtreecommitdiff
path: root/setup.py
blob: bced0ea4345d32e3c1efa163697c42f3f1037b44 (plain)
1
2
3
4
5
6
7
8
9
10
11
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"],
)