13
1
Fork 0
mirror of https://github.com/netzbegruenung/passbolt-salt synced 2024-05-04 13:23:40 +02:00
passbolt-salt/setup.py

12 lines
228 B
Python
Raw 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()