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'
)
|