diff options
author | Dominic <yobmod@gmail.com> | 2021-07-13 22:38:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-13 22:38:25 +0100 |
commit | 63f5541c183a22b0aff012c9b0c7df76142d63fa (patch) | |
tree | 447e82b6674ef4cd28a6f3b19359b9b980af85c5 /setup.py | |
parent | b66bfbd1bc4eb45312ed44778c4072ae230cf63a (diff) | |
parent | 3ef208cb9119bd7f8345f55b991ad196bcdffeb4 (diff) | |
download | gitpython-63f5541c183a22b0aff012c9b0c7df76142d63fa.tar.gz |
Merge pull request #1289 from gitpython-developers/pytest
Tidying up, and replace nose with pytest.
No code changes, and i've been working on my branch with pytest with no problems, so i'm merging now
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1,13 +1,12 @@ #!/usr/bin/env python -from __future__ import print_function try: from setuptools import setup, find_packages except ImportError: - from ez_setup import use_setuptools + from ez_setup import use_setuptools # type: ignore[Pylance] use_setuptools() from setuptools import setup, find_packages -from distutils.command.build_py import build_py as _build_py +from setuptools.command.build_py import build_py as _build_py from setuptools.command.sdist import sdist as _sdist import fnmatch import os @@ -95,7 +94,6 @@ setup( license="BSD", url="https://github.com/gitpython-developers/GitPython", packages=find_packages(exclude=("test.*")), - # package_data={'git': ['**/*.pyi', 'py.typed']}, include_package_data=True, py_modules=build_py_modules("./git", excludes=["git.ext.*"]), package_dir={'git': 'git'}, |