6 lines
90 B
Python
6 lines
90 B
Python
from setuptools import setup
|
|
setup(
|
|
app=["main.py"],
|
|
setup_requires=["py2app"],
|
|
)
|