-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a1b65d1
commit 27ad1ce
Showing
1 changed file
with
35 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,52 @@ | ||
#!/usr/bin/env python | ||
|
||
from distutils.core import setup | ||
import codecs | ||
import os | ||
import re | ||
import sys | ||
|
||
# TO DO: figure out how to import version number automatically from code! | ||
from setuptools import setup, find_packages | ||
|
||
def read(*parts): | ||
path = os.path.join(os.path.dirname(__file__), *parts) | ||
with codecs.open(path, encoding='utf-8') as fobj: | ||
return fobj.read() | ||
|
||
def find_version(*file_paths): | ||
version_file = read(*file_paths) | ||
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", version_file, re.M) | ||
if version_match: | ||
return version_match.group(1) | ||
raise RuntimeError("Unable to find version string.") | ||
|
||
install_requires = [] | ||
|
||
readme = open('README.md', 'r') | ||
README_TEXT = readme.read() | ||
readme.close() | ||
|
||
setup(name='jpylyzer', | ||
packages=['jpylyzer'], | ||
version='1.17.0', | ||
packages=find_packages(), | ||
version=find_version('jpylyzer', 'jpylyzer.py'), | ||
license='LGPL', | ||
install_requires=install_requires, | ||
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='[email protected]', | ||
maintainer='Johan van der Knijff', | ||
maintainer_email='[email protected]', | ||
url='http://jpylyzer.openpreservation.org/' | ||
) | ||
url='http://jpylyzer.openpreservation.org/', | ||
download_url='https://github.com/openpreserve/jpylyzer/archive/' + find_version('jpylyzer', 'jpylyzer.py') + '.tar.gz' | ||
), | ||
package_data={'jpylyzer': ['*.*']}, | ||
entry_points={'console_scripts': [ | ||
'jpylyzer = jpylyzer.jpylyzer:main', | ||
]}, | ||
classifiers=[ | ||
'Environment :: Console', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
] |