[go: up one dir, main page]

File: setup.py

package info (click to toggle)
themole 0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 900 kB
  • sloc: python: 9,957; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 520 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20


from cx_Freeze import setup, Executable

copyDependentFiles=True
silent = True
includes = ["lxml", "lxml._elementpath", "lxml.etree", "pyreadline", "pyreadline.release", "gzip"]
excludes = ["tcl", "tk", "tkinter"]
setup(
    name = "The Mole",
    version = "0.3",
    description = "The Mole: Digging up your data",
    options = {
        "build_exe": {
            "includes": includes,                          
            "excludes": excludes
            }
        },
    executables = [Executable("mole.py")]
)