-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (35 loc) · 1.21 KB
/
setup.py
File metadata and controls
44 lines (35 loc) · 1.21 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
#!/usr/bin/env python3
import os
from setuptools import setup, find_packages
def read(fname):
"""
Utility function to read a file.
"""
return open(fname, "r").read().strip()
setup(
name = "vtimshow",
version = read(os.path.join(os.path.dirname(__file__), "VERSION")),
packages = find_packages(),
description = "Display data sets as images",
long_description = read(
os.path.join(os.path.dirname(__file__), "README.rst")
),
author = "Keith F Prussing",
author_email = "kprussing74@gmail.com",
url="https://github.com/kprussing/vtimshow/tree/stable",
license = "MIT",
install_requires = ["ViTables >2.1", "pyqtgraph"],
dependency_links = [
"https://github.com/uvemas/ViTables@f6cb68227e10bf0658fd11b8daa56b76452b0341#egg=project-version"
],
entry_points = {
"vitables.plugins" : "vtimshow = vtimshow:VtImageViewer",
"vtimshow.filters" : [
"nofilter = vtimshow.filters.nofilter",
"visred = vtimshow.filters.scaledhumaneye:Red",
"visgreen = vtimshow.filters.scaledhumaneye:Green",
"visblue = vtimshow.filters.scaledhumaneye:Blue",
]
},
include_package_data=True,
)