28 lines
1.2 KiB
Python
28 lines
1.2 KiB
Python
from distutils.core import setup
|
|
|
|
kwargs = {'name': 'Glymur',
|
|
'version': '0.1.2',
|
|
'description': 'Tools for accessing JPEG2000 files',
|
|
'long_description': open('README.md').read(),
|
|
'author': 'John Evans',
|
|
'author_email': 'johnevans938 at gmail dot com',
|
|
'url': 'https://github.com/quintusdias/glymur',
|
|
'packages': ['glymur', 'glymur.test', 'glymur.lib',
|
|
'glymur.lib.test'],
|
|
'package_data': {'glymur': ['data/*.jp2']},
|
|
'scripts': ['bin/jp2dump'],
|
|
'license': 'LICENSE.txt',
|
|
'platforms': ['darwin']}
|
|
clssfrs = ["Programming Language :: Python",
|
|
"Programming Language :: Python :: 2.7",
|
|
"Programming Language :: Python :: 3.3",
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Development Status :: 1 - Alpha",
|
|
"Operating System :: MacOS",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Intended Audience :: Scientific/Research",
|
|
"Intended Audience :: Information Technology",
|
|
"Topic :: Software Development :: Libraries :: Python Modules"]
|
|
kwargs['classifiers'] = clssfrs
|
|
setup(**kwargs)
|