mirror of
https://github.com/PyCQA/flake8.git
synced 2025-08-24 08:34:43 +08:00
12 lines
198 B
Python
12 lines
198 B
Python
"""Packaging logic for Flake8."""
|
|
from __future__ import annotations
|
|
|
|
import os
|
|
import sys
|
|
|
|
import setuptools
|
|
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "src"))
|
|
|
|
setuptools.setup()
|