forked from ska-sa/casperfpga
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 752 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 752 Bytes
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
from distutils.core import setup
import glob
setup(
name='casperfpga',
version='0.0.1',
author='P.Prozesky',
author_email='paulp@ska.ac.za',
# scripts=['bin/stowe-towels.py','bin/wash-towels.py'],
url='',
license='LICENSE.txt',
description='Talk to CASPER fpga devices using katcp or dcp.',
long_description=open('README.txt').read(),
install_requires=[
'katcp',
'numpy',
'odict',
],
provides=['casperfpga'],
packages=['casperfpga'], # , 'casperfpga.test'],
package_dir={'casperfpga': 'src'},
package_data={'' : ['LMX2581*.txt']},
include_package_data=True,
scripts=glob.glob('scripts/*'),
setup_requires=['katversion'],
use_katversion=True
)
# end