-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (44 loc) · 1.41 KB
/
setup.py
File metadata and controls
48 lines (44 loc) · 1.41 KB
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
#!/usr/bin/env python
import os.path
from setuptools import setup
__version__ = "can't find version.py"
exec(compile(open('rasl/version.py').read(), # pylint: disable=exec-used
'rasl/version.py', 'exec'))
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='rasl',
version=__version__,
description='Batch image alignment using the technique described in "Robust Alignment by Sparse and Low-rank Decomposition for Linearly Correlated Images"',
author='Will Welch',
author_email='github@quietplease.com',
packages=['rasl'],
license="MIT",
keywords="Principal Component Pursuit, Robust PCA, Image alignment, Eigenface",
url="https://github.com/welch/rasl",
long_description=read('README.rst'),
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Topic :: Scientific/Engineering",
],
install_requires=[
"numpy",
"scipy",
"scikit-image"
],
tests_require=[
"pytest"
],
setup_requires=[
"pytest-runner"
],
extras_require={
"PLOT": ["matplotlib"]
},
entry_points={
"console_scripts": [
"rasl.demo = rasl.application:demo_cmd [PLOT]",
],
}
)