File: setup.py

package info (click to toggle)
python-parted 0.10-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 924 kB
  • ctags: 342
  • sloc: ansic: 1,039; python: 512; makefile: 70; sh: 13
file content (22 lines) | stat: -rw-r--r-- 779 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# $Progeny: setup.py,v 1.2 2002/03/18 23:51:32 epg Exp $

from distutils.core import setup, Extension

longdesc = """GNU Parted is a library for manipulating disk
partitions.  This module contains Python bindings for the library.
"""

pyparted = Extension("_partedmodule",
                     ["pyparted.c"],
                     libraries=["uuid", "parted"])

setup(name="python-parted", version="0.10",
      author="Progeny Linux Systems, Inc.", author_email="bugs@progeny.com",
      url="http://hackers.progeny.com/python-parted/",
      licence="GPL",
      description="Python bindings for GNU Parted",
      long_description=longdesc,
      keywords=["partitioning", "parted", "linux"],
      platforms="all",
      py_modules=["parted"],
      ext_modules=[pyparted,])