Skip to content

Commit 2df0381

Browse files
authored
Rmv EZ_setup from setup.py
Build tools now specified in pyproject.toml, so can be sure setuptools is installed
1 parent 28e6aa7 commit 2df0381

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

Diff for: setup.py

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
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
92
from setuptools.command.build_py import build_py as _build_py
103
from setuptools.command.sdist import sdist as _sdist
114
import fnmatch

0 commit comments

Comments
 (0)