-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
55 lines (48 loc) · 1.69 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
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup
descr = """Data Extraction Tools
Yoink is a tool for extracting data from rasterized images. It currently
supports interactively picking points from line plots. It also supports
extracting the scalar field from a colormapped image. Yoink builds on top
matplotlib and is platform and rendering backend independent.
Please refer to the online documentation at http://yoinkery.com/
Follow development at https://github.com/mrterry/yoink
"""
DISTNAME = 'yoinkery'
DESCRIPTION = 'Yoinking data from rasterized images'
LONG_DESCRIPTION = descr
MAINTAINER = 'Matt Terry'
MAINTAINER_EMAIL = '[email protected]'
URL = 'http://yoinkery.com'
LICENSE = 'Modified BSD'
VERSION = '0.4dev'
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Utilities',
]
setup(
name=DISTNAME,
version=VERSION,
author='Matt Terry',
author_email='[email protected]',
license=LICENSE,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
url=URL,
packages=['yoink', 'yoink.data', 'yoink.test'],
package_data={'yoink': ['data/*.png', 'test/*.txt']},
scripts=['bin/yoink'],
install_requires=['numpy',
'scipy',
'matplotlib >=1.2',
'scikit-image >=0.8',
],
include_package_data=True,
)