File: setup.py

package info (click to toggle)
cdbs 0.4.130
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 1,348 kB
  • sloc: sh: 4,534; xml: 2,159; makefile: 178; perl: 138; python: 94; ansic: 7; java: 5
file content (13 lines) | stat: -rwxr-xr-x 394 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python
from distutils.core import setup, Extension
setup(name="distutils-test",
      version = "0.1",
      author="jbailey",
      author_email="jbailey@debian.org",
      url="http://www.python.org/sigs/distutils-sig/",
#EXT# ext_modules=[Extension('foo', ['foo.c'])],
      #py_modules=['package'],
      packages = ["testing"],
      package_dir = {'testing':'src'}
     )