mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-29 10:36:53 +00:00
Move flake8 into src
This is an emerging best practice and there is little reason to not follow it
This commit is contained in:
parent
5c8d767626
commit
1a2c68f5da
32 changed files with 8 additions and 4 deletions
4
setup.py
4
setup.py
|
|
@ -3,10 +3,13 @@
|
|||
from __future__ import with_statement
|
||||
|
||||
import functools
|
||||
import os
|
||||
import sys
|
||||
|
||||
import setuptools
|
||||
|
||||
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'src'))
|
||||
|
||||
import flake8 # noqa
|
||||
|
||||
try:
|
||||
|
|
@ -66,6 +69,7 @@ setuptools.setup(
|
|||
maintainer="Ian Cordasco",
|
||||
maintainer_email="graffatcolmingov@gmail.com",
|
||||
url="https://gitlab.com/pycqa/flake8",
|
||||
package_dir={"": "src"},
|
||||
packages=[
|
||||
"flake8",
|
||||
"flake8.api",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue