-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·35 lines (24 loc) · 891 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
import sys
try:
import pyqtgraph
except ImportError:
raise ImportError("Required package `pyqtgraph` not found. "
"Please install it to proceed.")
try:
import fabio
except ImportError:
raise ImportError("Required package `fabio` not found. "
"Please install it to proceed.")
if len(sys.argv)<2:
print("see install.txt for installation instructions.")
setup( name = "atlasccd",
version = "0.1",
packages = ["atlasccd"],
package_dir = {"atlasccd":"lib"},
author = "Carsten Richter",
author_email = "[email protected]",
url = "https://github.com/carichte/atlasccd",
description = "functions to open and visualize images from agilents atlas ccd based on fabio and pyqtgraph",
)