Skip to content

Commit

Permalink
updated setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bitsgalore committed Aug 10, 2017
1 parent a1b65d1 commit 27ad1ce
Showing 1 changed file with 35 additions and 6 deletions.
41 changes: 35 additions & 6 deletions setup.py
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',
]

0 comments on commit 27ad1ce

Please sign in to comment.