File: setup.py

package info (click to toggle)
pysmbc 1.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 188 kB
  • ctags: 89
  • sloc: ansic: 978; python: 228; makefile: 50
file content (9 lines) | stat: -rw-r--r-- 394 bytes parent folder | download
1
2
3
4
5
6
7
8
9
from distutils.core import setup, Extension
setup (name="smbc", version="1.0",
       ext_modules=[Extension("smbc",
                              ["smbcmodule.c",
                               "context.c",
                               "dir.c",
                               "file.c",
                               "smbcdirent.c"],
                              libraries=["smbclient"])])