-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (32 loc) · 940 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
"""
setup.py
This is the setup file for the ARS signal processing python package
@author: John Swoboda
"""
from pathlib import Path
from setuptools import setup, find_packages
import versioneer
req = ["scipy", "numpy", "matplotlib", "digital_rf"]
scripts = ["bin/drf_decompose.py"]
config = dict(
description="Processing and Plotting of ",
author="John Swoboda",
url="https://github.com/MIT-Adaptive-Radio-Science/sigprocpython",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
install_requires=req,
python_requires=">=3.0",
packages=find_packages(),
scripts=scripts,
name="mitarspysigproc",
package_data={"mitarspysigproc": ["coeffs/*.csv"]},
)
curpath = Path(__file__)
testpath = curpath.joinpath("Testdata")
try:
curpath.mkdir(parents=True, exist_ok=True)
print("created {}".format(testpath))
except OSError:
pass
setup(**config)