Skip to content

Commit 431b5aa

Browse files
committed
Remove unnecessary runtime dependency on setuptools
The package does not seem to use setuptools or pkg_resources anywhere, and the dependency is probably leftover after migration to importlib.metadata.
1 parent 5cd91a3 commit 431b5aa

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,13 @@
3131
Topic :: Software Development :: Libraries :: Python Modules
3232
""".splitlines()))) # noqa: E128
3333

34-
SETUP_REQUIRES = ['setuptools_scm >= 3.0']
34+
SETUP_REQUIRES = ['setuptools >= 34.4', 'setuptools_scm >= 3.0']
3535

3636
INSTALL_REQUIRES = [
3737
'attrs >= 16.3.0',
3838
'colorama >= 0.3.7',
3939
'importlib_metadata>=1.6.0;python_version<"3.8"',
4040
'pyperclip >= 1.6',
41-
'setuptools >= 34.4',
4241
'wcwidth >= 0.1.7',
4342
]
4443

0 commit comments

Comments
 (0)