forked from Chrisqd1/pymoku
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (35 loc) · 1.1 KB
/
Copy pathsetup.py
File metadata and controls
42 lines (35 loc) · 1.1 KB
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
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup
import os.path
with open('pymoku/version.txt') as f:
version = f.read().strip()
setup(
name='pymoku',
version=version,
author='Ben Coughlan',
author_email='ben@liquidinstruments.com',
packages=['pymoku', 'pymoku.tools'],
package_dir={'pymoku': 'pymoku'},
package_data={
'pymoku': ['version.txt', '*.capnp', os.path.join('data', '*')]
},
license='MIT',
long_description=(
"Python scripting interface to the Liquid Instruments Moku:Lab"),
url="https://github.com/liquidinstruments/pymoku",
download_url=("https://github.com/liquidinstruments/"
"pymoku/archive/%s.tar.gz") % version,
keywords=['moku', 'liquid instruments', 'test', 'measurement', 'lab',
'equipment'],
entry_points={
'console_scripts': [
'moku=pymoku.tools.moku:main',
'moku_convert=pymoku.tools.moku_convert:main',
]
},
install_requires=[
'future',
'pyzmq>=15.3.0',
'requests>=2.18.0',
],
zip_safe=False, # Due to bitstream download
)