forked from NSLS-II-XPD/xpdView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 685 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (17 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""
use 'python setup.py install' while in file folder and anaconda is active to install this package, also user needs to
have the xray_vision package found here:
https://github.com/Nikea/xray-vision
Also need to install tifffile and pyqt (for some reason conda won't install these packages automatically).
For tifffile installation instructions are on their website.
"""
from setuptools import setup, find_packages
setup(
name='xpd_view',
version='0.2',
packages=find_packages(),
description='Visualization Code for Beam line',
zip_safe=False,
url='https://github.com/cduff4464/xpdView.git',
install_requires=['matplotlib', 'numpy', 'scipy', 'pyFAI']
)