ATMOS/setup.py

34 lines
910 B
Python
Raw Normal View History

2019-11-25 00:19:36 +08:00
import setuptools
from setuptools import setup
setup(
name='pyatmos',
2020-07-27 10:38:52 +08:00
version='1.1.2',
2019-11-25 00:19:36 +08:00
long_description_content_type='text/markdown',
description='A package to estimate the atmosphere parameters',
long_description=open('README.md', 'rb').read().decode('utf-8'),
license='MIT',
author='Chunxiao Li',
author_email='lcx366@126.com',
url='https://github.com/lcx366/ATMOS',
classifiers=[
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.8',
2019-11-25 00:19:36 +08:00
'License :: OSI Approved :: MIT License',
],
packages=setuptools.find_packages(),
2019-12-16 23:40:05 +08:00
include_package_data=True,
2019-11-25 00:19:36 +08:00
package_data = {
'pyatmos.data': ['*.npz'],
},
install_requires=[
'scipy',
'numpy',
'pyshtools',
'astropy',
'tqdm',
'colorama'
2019-11-25 00:19:36 +08:00
],
2019-12-16 23:40:05 +08:00
)