forked from space-physics/grwave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 840 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
#!/usr/bin/env python
install_requires=['numpy','pandas']
tests_require=['nose','coveralls']
# %%
import subprocess
from setuptools import setup,find_packages
setup(name='pygrwave',
packages=find_packages(),
description='Groundwave per ITU P.368 10 kHz - 30 MHz',
version='0.1.0',
url='https://github.com/scivision/python-grwave',
classifiers=[
'Intended Audience :: Science/Research',
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',],
install_requires=install_requires,
tests_require=tests_require,
extras_require={'tests':tests_require,
'plot':['matplotlib','seaborn',],
'io':['folium',]},
python_requires='>=3.6',
)
subprocess.check_call(['gfortran','fortran/grwave.for','-o','grwave'])