File: setup.py

package info (click to toggle)
ooolib-python 0.0.17-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 168 kB
  • ctags: 101
  • sloc: python: 1,731; makefile: 40
file content (17 lines) | stat: -rwxr-xr-x 516 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python

from distutils.core import setup
import distutils.core
import ooolib

setup(name="ooolib-python",
      version=ooolib.version_number(),
      description="Package for creating OpenDocument Format(ODF) spreadsheets.",
      author="Joseph Colton",
      author_email="joseph@colton.byuh.edu",
      maintainer="Joseph Colton",
      maintainer_email="joseph@colton.byuh.edu",
      license = 'GNU LGPL',
      url = "http://sourceforge.net/projects/ooolib/",
      packages=['ooolib']
      )