blob: 26ee8ca0f0ab89ed2f86f6a44717bcad4a0cda59 [file] [log] [blame]
#! /usr/bin/env python
# $Id$
from os import chdir, stat
from distutils.core import setup, Extension
setup (# Distribution meta-data
name = "bsd-chflags",
version = "0.1",
description = "",
author = "Stephen Bennett",
author_email = "spb@gentoo.org",
license = "",
long_description = \
'''''',
ext_modules = [ Extension(
"chflags",
["chflags.c"],
libraries=[],
)
],
url = "",
)