passbolt-salt/setup.py

12 lines
228 B
Python

#!/usr/bin/env python3
"""
Minimal setup.py for legacy builds.
See pyproject.toml for all setup configuration options.
"""
from __future__ import annotations
from setuptools import setup
if __name__ == "__main__":
setup()