File: setup.py

package info (click to toggle)
jpylyzer 1.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,560 kB
  • ctags: 131
  • sloc: python: 1,649; makefile: 24; sh: 19
file content (23 lines) | stat: -rw-r--r-- 702 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
23
#!/usr/bin/env python

from distutils.core import setup

# TO DO: figure out how to import version number automatically from code!

readme = open('README.txt', 'r')
README_TEXT = readme.read()
readme.close()

setup(name='jpylyzer',
      packages=['jpylyzer'],
      version='1.13.0',
      license='LGPL',
      platforms=['POSIX', 'Windows'],
      description='JP2 (JPEG 2000 Part 1) image validator and properties extractor',
      long_description=README_TEXT,
      author='Johan van der Knijff',
      author_email='johan.vanderknijff@kb.nl',
      maintainer='Johan van der Knijff',
      maintainer_email='johan.vanderknijff@kb.nl',
      url='https://github.com/openplanets/jpylyzer'
      )