-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (42 loc) · 1.23 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
#pylint: disable=C0111
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name = "ReadImages",
version = "0",
packages = find_packages(),
scripts = [
'bin/ccdfli_viewer.py',
'bin/export_dataset.py',
'bin/projection_stack.py',
'bin/pitch.py',
'bin/dpc_radiography.py',
'bin/phase_drift.py',
'bin/visibility_map.py',
'bin/make_hdf5.py',
'bin/export_images.py',
'bin/intensity_scan.py',
'bin/ct_reconstruction.py',
'bin/dpc_scan.py',
],
install_requires = [
'h5py',
'numpy',
'pyinotify',
'scipy',
'scikit-image'],
package_data = {
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst'],
},
# metadata for upload to PyPI
author = "Matteo Abis",
author_email = "[email protected]",
description = "Read and analyse FLI CCD raw images",
license = "GNU GPL 3",
keywords = "readimages",
# project home page, if any
url = "https://bitbucket.org/Enucatl/readimages",
# could also include long_description, download_url, classifiers, etc.
)