-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (41 loc) · 1.32 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (41 loc) · 1.32 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
43
44
45
46
47
# Purpose: Setup file for MAGPRIME package
from setuptools import setup, find_packages
REQUIREMENTS = [
'pandas',
'numpy',
'pytest',
'scipy',
'numba',
'tqdm',
'matplotlib',
'toolz',
'cvxpy',
'scikit-learn',
'tqdm',
'magpylib',
'keyboard',
'seaborn',
'wavelets @ git+https://github.com/aphoffmann/wavelets.git',
'pymssa @ git+https://github.com/aphoffmann/pymssa.git',
'nsgt @ git+https://github.com/aphoffmann/nsgt.git',
'invertiblewavelets @ git+https://github.com/aphoffmann/invertiblewavelets.git'
]
DEPENDENCY_LINKS = [
'git+https://github.com/aphoffmann/wavelets.git',
'git+https://github.com/aphoffmann/pymssa.git',
'git+https://github.com/aphoffmann/invertiblewavelets.git',
'git+https://github.com/aphoffmann/invertiblewavelets.git'
]
setup(
name='magprime',
version='1.8.2.1',
description="Magnetic signal PRocessing, Interference Mitigation, and Enhancement (MAGPRIME)",
author="Alex Paul Hoffmann",
author_email='aphoff@umich.edu',
url='https://github.com/aphoffmann/MAGPRIME',
packages=find_packages(),
package_data={'magprime.examples': ['*.ipynb'],
'magprime.utility.SPACE_DATA': ['*.dat', '*.csv', '*.txt'],},
install_requires=REQUIREMENTS,
dependency_links=DEPENDENCY_LINKS
)