Spaces:
Sleeping
Sleeping
File size: 242 Bytes
d5ea245 |
1 2 3 4 5 6 7 8 9 10 11 12 |
"""
Setup script for backward compatibility.
Modern Python projects should use pyproject.toml for configuration.
"""
from setuptools import setup, find_packages
setup(
packages=find_packages(where="src"),
package_dir={"": "src"},
)
|