We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 617e5f5 commit 9a6e009Copy full SHA for 9a6e009
setup.py
@@ -35,7 +35,9 @@
35
for line in f:
36
line, _, _ = line.partition('#')
37
line = line.strip()
38
- if ';' in line:
+ if not line or line.startswith('setuptools'):
39
+ continue
40
+ elif ';' in line:
41
requirement, _, specifier = line.partition(';')
42
for_specifier = EXTRAS.setdefault(':{}'.format(specifier), [])
43
for_specifier.append(requirement)
0 commit comments