File tree 2 files changed +6
-10
lines changed
2 files changed +6
-10
lines changed Original file line number Diff line number Diff line change
1
+ [build-system ]
2
+ requires = [" setuptools" , " wheel" ]
3
+ build-backend = " setuptools.build_meta"
4
+
1
5
[tool .pytest .ini_options ]
2
6
python_files = ' test_*.py'
3
7
testpaths = ' test' # space seperated list of paths from root e.g test tests doc/testing
Original file line number Diff line number Diff line change 1
- #!/usr/bin/env python
2
- try :
3
- from setuptools import setup , find_packages
4
- except ImportError :
5
- from ez_setup import use_setuptools # type: ignore[Pylance]
6
- use_setuptools ()
7
- from setuptools import setup , find_packages
8
-
1
+ from setuptools import setup , find_packages
9
2
from setuptools .command .build_py import build_py as _build_py
10
3
from setuptools .command .sdist import sdist as _sdist
11
4
import fnmatch
@@ -93,8 +86,7 @@ def build_py_modules(basedir, excludes=()):
93
86
author_email = "byronimo@gmail.com, mtrier@gmail.com" ,
94
87
license = "BSD" ,
95
88
url = "https://github.com/gitpython-developers/GitPython" ,
96
- packages = find_packages (exclude = ("test.*" )),
97
- package_data = {'git' : ['**/*.pyi' , 'py.typed' ]},
89
+ packages = find_packages (exclude = ["test" , "test.*" ]),
98
90
include_package_data = True ,
99
91
py_modules = build_py_modules ("./git" , excludes = ["git.ext.*" ]),
100
92
package_dir = {'git' : 'git' },
You can’t perform that action at this time.
0 commit comments