11 lines
206 B
Python
11 lines
206 B
Python
|
|
"""Setup script for Video-Summary package.
|
||
|
|
|
||
|
|
This is a shim for backward compatibility.
|
||
|
|
The real configuration is in pyproject.toml.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from setuptools import setup
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
setup()
|