mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-29 18:46:52 +00:00
setup.py: Use setuptools if available, for 'develop' command
This commit is contained in:
parent
ad87ad1960
commit
d5d28da816
1 changed files with 4 additions and 1 deletions
5
setup.py
5
setup.py
|
|
@ -1,4 +1,7 @@
|
|||
from distutils.core import setup
|
||||
try:
|
||||
from setuptools import setup
|
||||
except ImportError:
|
||||
from distutils.core import setup
|
||||
|
||||
README = open('README').read()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue