10 lines
247 B
Python
10 lines
247 B
Python
"""Setup configuration for Elytra PIM Client.
|
|
|
|
This setup.py file provides compatibility with legacy build tools.
|
|
The main configuration is in pyproject.toml (PEP 517/518).
|
|
"""
|
|
|
|
from setuptools import setup
|
|
|
|
if __name__ == "__main__":
|
|
setup()
|