forked from AdvancedPhotonSource/rsMap3D
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (24 loc) · 885 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
'''
Copyright (c) 2014, UChicago Argonne, LLC
See LICENSE file.
'''
from setuptools import setup, find_packages
import rsMap3D
setup(name='rsMap3D',
version=rsMap3D.__version__,
description='Python Program to map xray diffraction data into ' + \
'reciprocal space map',
author = 'John Hammonds, Christian Schleputz',
author_email = '[email protected]',
url = 'https://confluence.aps.anl.gov/display/RSM/SSG_000116+Reciprocal+Space+Mapping',
packages = find_packages() ,
package_data = {'rsMap3D': ['resources/*.xml',],
'' : ['LICENSE',]},
install_requires = ['spec2nexus',
'pillow',
],
license = 'See LICENSE File',
platforms = 'any',
scripts = ['Scripts/rsMap3D',
'Scripts/rsMap3D.bat'],
)