Files
kaipy/setup.py
2025-04-24 09:42:34 -06:00

41 lines
1.1 KiB
Python

from setuptools import setup, find_packages
setup(
name='kaipy',
version='1.0.8',
description='Python software for CGS MAGE and other Kaiju models',
author='Kaiju team',
author_email='wiltbemj@ucar.edu',
url='https://bitbucket.org/aplkaiju/kaipy/src/master/',
packages=find_packages(),
include_package_data=True,
package_data={'kaipy': ['scripts/*', 'scripts/*/*']},
python_requires='>=3.8,<=3.11',
install_requires=[
'alive_progress',
'astropy',
'cdasws',
'configparser',
'h5py',
'jupyterlab',
'matplotlib',
'pandas',
'progressbar',
'pyspedas',
'pytest',
'slack_sdk',
'spacepy',
'sphinx-rtd-theme',
'sunpy',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD 3-Clause',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)