forked from ptycho/ptypy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 805 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
#!/usr/bin/env python
import setuptools
# exclude_packages = ["test.*", "test"]
# package_list = setuptools.find_packages(exclude=exclude_packages)
# print(package_list)
setuptools.setup(
#name='Python Ptychography toolbox',
#version=VERSION,
#author='Pierre Thibault, Bjoern Enders, Martin Dierolf and others',
#description='',
#long_description=open('README.rst', 'r').read(),
# package_dir={'ptypy': 'ptypy'},
# packages=package_list,
# package_data={'ptypy': ['resources/*',],
# 'ptypy.accelerate.cuda_pycuda.cuda': ['*.cu']},
scripts=['scripts/ptypy.plot',
'scripts/ptypy.inspect',
'scripts/ptypy.plotclient',
'scripts/ptypy.new',
'scripts/ptypy.csv2cp',
'scripts/ptypy.run'],
)