version update

This commit is contained in:
Chunxiao Li 2021-01-22 15:22:11 +08:00
parent 3a0a65377a
commit 2d120c8d25

View File

@ -1,33 +1,37 @@
import setuptools from setuptools import setup,find_packages
from setuptools import setup
setup( setup(
name='pyatmos', name = 'pyatmos',
version='1.1.2', version = '1.2.0',
long_description_content_type='text/markdown', description = 'A package to estimate the atmosphere parameters',
description='A package to estimate the atmosphere parameters', author = 'Chunxiao Li',
long_description=open('README.md', 'rb').read().decode('utf-8'), author_email = 'lcx366@126.com',
license='MIT', url = 'https://github.com/lcx366/ATMOS',
author='Chunxiao Li', license = 'MIT',
author_email='lcx366@126.com', long_description_content_type = 'text/markdown',
url='https://github.com/lcx366/ATMOS', long_description = open('README.md', 'rb').read().decode('utf-8'),
classifiers=[ keywords = ['atmosphere models','coesa76','msise00'],
'Intended Audience :: Education', python_requires = '>=3.6',
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Education/Engineering',
'Intended Audience :: Science/Research', 'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License', 'License :: OSI Approved :: MIT License',
], ],
packages=setuptools.find_packages(), packages = find_packages(),
include_package_data=True, include_package_data = True,
package_data = { package_data = {'pyatmos.data': ['*.npz'],},
'pyatmos.data': ['*.npz'],
},
install_requires=[ install_requires=[
'scipy', 'scipy',
'numpy', 'numpy',
'pyshtools',
'astropy', 'astropy',
'tqdm',
'colorama'
], ],
) extras_require={
'colored-progress': ['tqdm','colorama'],
'legendre': ['pyshtools'],
'time-coordinates': ['astropy'],
},
)