-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (37 loc) · 988 Bytes
/
setup.py
File metadata and controls
43 lines (37 loc) · 988 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
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
from setuptools import setup, find_packages
version = '0.0.1'
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
setup(
name='dsp',
version=version,
author='fmagno',
author_email='flmagnom@gmail.com',
packages=find_packages(),
install_requires=[
<<<<<<< HEAD
'matplotlib==3.1.2',
=======
#'matplotlib==2.1.0',
'scipy',
'mpld3',
'matplotlib',
>>>>>>> c9db4807c9eb08aaee66224aac39adaaf49f19db
'numpy==1.16.2',
'toml==0.10.0',
'namedlist==1.7.0',
],
scripts=[
'scripts/geom2freq',
'scripts/sig_viewer',
'scripts/sine_gen',
'scripts/run_campaign',
'scripts/baseband_async_oii',
'scripts/passband_async_oi',
'scripts/baseband_sync_oii_manual',
'scripts/bandpass_async_oii_gr38_manual',
'scripts/baseband_sync_oii_gr38_manual',
'scripts/sig_calc',
]
)