File: setup.py

package info (click to toggle)
cheetah 3.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,052 kB
  • sloc: python: 10,653; ansic: 584; xml: 323; sh: 181; makefile: 87
file content (12 lines) | stat: -rwxr-xr-x 247 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python
import os

try:
    os.remove('MANIFEST')  # to avoid those bloody out-of-date manifests!!
except Exception:
    pass

import SetupTools
import SetupConfig
configurations = (SetupConfig,)
SetupTools.run_setup(configurations)