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