forked from FABLE-3DXRD/xfab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.02 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
#!/usr/bin/env python
from __future__ import absolute_import
#from distutils.core import setup,Extension
from setuptools import setup,Extension
import sys
setup(
name='xfab',
version='0.0.6',
description='Crystallographic toolbox and library',
license='GPL', maintainer='Henning Osholm Soerensen and Jon Wright',
maintainer_email='[email protected], [email protected]',
download_url='http://sourceforge.net/project/showfiles.php?group_id=82044&package_id=309377',
url='https://github.com/FABLE-3DXRD/xfab',
packages=['xfab'],
package_dir={"xfab": "xfab"},
scripts=["scripts/gff_to_ubi.py",
"scripts/ubi_to_gff.py",
"scripts/plot_gff.py",
"scripts/make_gve.py",
"scripts/findpeaks.py",
"scripts/grainspotter_loop.py",
"scripts/makemap_all.py",
"scripts/tweakdetpars.py",
"scripts/flt_remove_beam.py",
"scripts/flt_split_phases.py"],
install_requires = ['numpy',
'six',
'pycifrw']
)