File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 11#!/usr/bin/env python
2- from __future__ import print_function
32try :
43 from setuptools import setup , find_packages
54except ImportError :
6- from ez_setup import use_setuptools
5+ from ez_setup import use_setuptools # type: ignore[Pylance]
76 use_setuptools ()
87 from setuptools import setup , find_packages
98
10- from distutils .command .build_py import build_py as _build_py
9+ from setuptools .command .build_py import build_py as _build_py
1110from setuptools .command .sdist import sdist as _sdist
1211import fnmatch
1312import os
@@ -95,7 +94,6 @@ def build_py_modules(basedir, excludes=[]):
9594 license = "BSD" ,
9695 url = "https://github.com/gitpython-developers/GitPython" ,
9796 packages = find_packages (exclude = ("test.*" )),
98- # package_data={'git': ['**/*.pyi', 'py.typed']},
9997 include_package_data = True ,
10098 py_modules = build_py_modules ("./git" , excludes = ["git.ext.*" ]),
10199 package_dir = {'git' : 'git' },
You can’t perform that action at this time.
0 commit comments