File: setup.py

package info (click to toggle)
apt-clone 0.2.2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 1,664 kB
  • ctags: 88
  • sloc: python: 785; makefile: 10; sh: 1
file content (14 lines) | stat: -rw-r--r-- 305 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python

from distutils.core import setup
import glob

# real setup
setup(name="apt-clone", 
      version="0.2.1",
      scripts=["apt-clone"],
      data_files = [ ('share/man/man8', 
                      glob.glob("*.8")),
                   ],
      py_modules = ['apt_clone'],
      )