10 lines
200 B
Python
10 lines
200 B
Python
"""Minimal setup.py for backward compatibility.
|
|
|
|
Modern installation should use pyproject.toml with pip >= 21.3
|
|
"""
|
|
|
|
from setuptools import setup
|
|
|
|
# All configuration is now in pyproject.toml
|
|
setup()
|