-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 867 Bytes
/
setup.py
File metadata and controls
34 lines (32 loc) · 867 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
30
31
32
33
34
from setuptools import setup, find_packages, Extension
# makes __version__ a local variable
exec(open('mule/_version.py').read())
# http://python-packaging.readthedocs.org/en/latest/command-line-scripts.html
setup(name='MULE',
version=__version__,
packages=find_packages(),
#package_data={
# 'MULE': ['resources/*',
# 'resources/tone_in_noise/*']
#},
scripts=['scripts/mule'],
#url='',
#license='',
#ext_modules=cythonize(extensions),
#include_dirs=[np.get_include()],
#author='',
#author_email='',
#description=''
install_requires=[
'docopt >= 0.6',
'crc16',
'Adafruit_BBIO',
'pyserial',
'pexpect'
],
tests_require=[
'pytest',
'hypothesis'
],
test_suite="py.test"
)