File: install-dependencies.py

package info (click to toggle)
harmony 0.7.2-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 204 kB
  • sloc: python: 1,714; makefile: 2
file content (10 lines) | stat: -rwxr-xr-x 178 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python3
import os, os.path
import sys

sys.argv.insert(1, "install")
os.chdir(os.path.dirname(__file__))
os.chdir(os.pardir)

from setuptools import setup
setup()