Skip to content

Commit 9c3fc16

Browse files
authored
removes setuptools from install requires (hardbyte#945)
It would be rather redundant to have setuptools in install requires when setuptools is being imported at the top of the setup.py file.
1 parent 8555fb4 commit 9c3fc16

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,9 @@
7979
# see https://www.python.org/dev/peps/pep-0345/#version-specifiers
8080
python_requires=">=3.6",
8181
install_requires=[
82-
# Setuptools provides pkg_resources which python-can makes use of.
83-
"setuptools",
82+
# Note setuptools provides pkg_resources which python-can makes use of,
83+
# but we assume it is already installed.
84+
# "setuptools",
8485
"wrapt~=1.10",
8586
'windows-curses;platform_system=="Windows"',
8687
"mypy_extensions>=0.4.0,<0.5.0",

0 commit comments

Comments
 (0)