mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-29 10:36:53 +00:00
9 lines
162 B
Python
9 lines
162 B
Python
"""Packaging logic for Flake8."""
|
|
import os
|
|
import sys
|
|
|
|
import setuptools
|
|
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'src'))
|
|
|
|
setuptools.setup()
|