File: setup.py

package info (click to toggle)
jpylyzer 1.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 200 kB
  • sloc: python: 1,284; sh: 22; makefile: 11
file content (26 lines) | stat: -rw-r--r-- 947 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
24
25
26
from distutils.core import setup

setup(
    name = "jpylyzer",
    packages = ["jpylyzer"],
    version = "1.5.0",
    license = "LGPL",
    platforms = ['POSIX', 'Windows'],
    description = "JP2 validator and properties extractor",
    author = "Johan van der Knijff",
    author_email = "johan.vanderknijff@kb.nl",
    url = "https://github.com/openplanets/jpylyzer",
    download_url = "http://chardet.feedparser.org/download/python2-chardet-2.0.1.tgz",
    keywords = ["encoding", "i18n", "xml"],
    long_description = """\
JP2 (JPEG 2000 Part 1) validator and properties extractor
-------------------------------------

Validator and feature extractor for JP2 (JPEG 2000 Part 1 - ISO/IEC 15444-1)
images. Jpylyzer was specifically created to check that a JP2 file really
conforms to the format's specifications. Additionally jpylyzer is able to
extract the technical characteristics of each image.

Requires Python 2.7 or later
"""
    )