passbolt-salt/setup.py

12 lines
228 B
Python
Raw Permalink Normal View History

2020-02-01 19:55:31 +01:00
#!/usr/bin/env python3
"""
2023-12-18 16:44:16 +01:00
Minimal setup.py for legacy builds.
See pyproject.toml for all setup configuration options.
2020-02-01 19:55:31 +01:00
"""
2023-12-18 16:44:16 +01:00
from __future__ import annotations
2020-02-01 19:55:31 +01:00
2023-12-18 16:44:16 +01:00
from setuptools import setup
2020-02-01 19:55:31 +01:00
2023-12-18 16:44:16 +01:00
if __name__ == "__main__":
setup()