mozDefrag/setup.py

13 lines
254 B
Python
Raw Permalink Normal View History

2017-09-30 10:11:45 +00:00
"""
mozDefrag cx_Freeze setup file
"""
from cx_Freeze import setup, Executable
setup(
name="mozDefrag",
version="0.1",
description="defrag Firefox/Thunderbird's sqlite DB for users/profiles",
executables=[Executable("mozDefrag.py")],
)