diff options
| -rw-r--r-- | pyproject.toml | 4 | ||||
| -rwxr-xr-x | setup.py | 12 |
2 files changed, 6 insertions, 10 deletions
diff --git a/pyproject.toml b/pyproject.toml index 79e62840..94f74793 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,7 @@ +[build-system] +requires = ["setuptools", "wheel"] +build-backend = "setuptools.build_meta" + [tool.pytest.ini_options] python_files = 'test_*.py' testpaths = 'test' # space seperated list of paths from root e.g test tests doc/testing @@ -1,11 +1,4 @@ -#!/usr/bin/env python -try: - from setuptools import setup, find_packages -except ImportError: - from ez_setup import use_setuptools # type: ignore[Pylance] - use_setuptools() - from setuptools import setup, find_packages - +from setuptools import setup, find_packages from setuptools.command.build_py import build_py as _build_py from setuptools.command.sdist import sdist as _sdist import fnmatch @@ -93,8 +86,7 @@ setup( author_email="byronimo@gmail.com, mtrier@gmail.com", license="BSD", url="https://github.com/gitpython-developers/GitPython", - packages=find_packages(exclude=("test.*")), - package_data={'git': ['**/*.pyi', 'py.typed']}, + packages=find_packages(exclude=["test", "test.*"]), include_package_data=True, py_modules=build_py_modules("./git", excludes=["git.ext.*"]), package_dir={'git': 'git'}, |
