-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (21 loc) · 912 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
from setuptools import setup,find_packages
setup(name='PyBWE',
version='2024.07',
description='Python tools for Bandwidth Extrapolation (BWE) of radar data',
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
url='/~https://github.com/NicOudart/PyBWE',
author='Nicolas OUDART',
author_email='nicolas.oudart@latmos.ipsl.fr',
packages=find_packages('src'),
install_requires=open("requirements.txt").read(),
package_dir={ '' : 'src' },
python_requires='>=3.7',
zip_safe=False,
keywords=['bwe','radar','resolution','bandwidth','extrapolation','sounder','planetary','science','astronomy','astrophysics','signal processing','spectral'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy'])