forked from ChrisBeaumont/mpl-modest-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.27 KB
/
setup.py
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
DESCRIPTION = "Friendlier matplotlib interaction with large images"
LONG_DESCRIPTION = open('README.md').read()
AUTHOR = 'Chris Beaumont'
AUTHOR_EMAIL = '[email protected]'
MAINTAINER = 'Chris Beaumont'
MAINTAINER_EMAIL = '[email protected]'
DOWNLOAD_URL = 'http://github.com/ChrisBeaumont/mpl-modest-image'
LICENSE = 'MIT'
try:
from pypandoc import convert
LONG_DESCRIPTION = convert(LONG_DESCRIPTION, 'rst', format='md')
except ImportError:
pass
setup(name='ModestImage',
version='0.2',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
download_url=DOWNLOAD_URL,
license=LICENSE,
packages=['modest_image'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3']
)