2021-01-22 15:22:11 +08:00
|
|
|
from setuptools import setup,find_packages
|
2019-11-25 00:19:36 +08:00
|
|
|
|
|
|
|
setup(
|
2021-01-22 15:22:11 +08:00
|
|
|
name = 'pyatmos',
|
2024-11-05 08:51:44 +08:00
|
|
|
version = '1.2.7',
|
2021-06-07 12:53:15 +08:00
|
|
|
description = 'A package to estimate the vertical structure of atmosphere with various atmospheric density models',
|
2021-01-22 15:22:11 +08:00
|
|
|
author = 'Chunxiao Li',
|
|
|
|
author_email = 'lcx366@126.com',
|
|
|
|
url = 'https://github.com/lcx366/ATMOS',
|
|
|
|
license = 'MIT',
|
|
|
|
long_description_content_type = 'text/markdown',
|
|
|
|
long_description = open('README.md', 'rb').read().decode('utf-8'),
|
2021-06-07 12:53:15 +08:00
|
|
|
keywords = ['coesa76','nrlmsise00','jb2008'],
|
2024-11-12 20:35:33 +08:00
|
|
|
python_requires = '>=3.8',
|
2021-01-22 15:22:11 +08:00
|
|
|
classifiers = [
|
|
|
|
'Development Status :: 4 - Beta',
|
2021-01-22 16:27:07 +08:00
|
|
|
'Intended Audience :: Education',
|
2019-11-25 00:19:36 +08:00
|
|
|
'Intended Audience :: Science/Research',
|
2023-05-10 15:41:36 +08:00
|
|
|
'Programming Language :: Python :: 3.10',
|
2024-03-08 00:19:04 +08:00
|
|
|
'Programming Language :: Python :: 3.11',
|
|
|
|
'Programming Language :: Python :: 3.12',
|
2019-11-25 00:19:36 +08:00
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
],
|
2021-01-22 15:22:11 +08:00
|
|
|
packages = find_packages(),
|
|
|
|
include_package_data = True,
|
|
|
|
package_data = {'pyatmos.data': ['*.npz'],},
|
2019-11-25 00:19:36 +08:00
|
|
|
install_requires=[
|
|
|
|
'scipy',
|
|
|
|
'numpy',
|
2021-06-07 14:59:25 +08:00
|
|
|
'numba',
|
2023-02-16 15:26:34 +08:00
|
|
|
'pandas',
|
2020-07-22 09:18:58 +08:00
|
|
|
'astropy',
|
2023-02-16 15:26:34 +08:00
|
|
|
'wget'
|
2021-06-07 12:53:15 +08:00
|
|
|
]
|
2021-01-22 15:22:11 +08:00
|
|
|
)
|