Update setup.py

This commit is contained in:
Chunxiao Li 2019-12-16 23:40:05 +08:00 committed by GitHub
parent 25b92f2f4e
commit 9076342992
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@ from setuptools import setup
setup(
name='pyatmos',
version='1.0',
version='1.0.1',
long_description_content_type='text/markdown',
description='A package to estimate the atmosphere parameters',
long_description=open('README.md', 'rb').read().decode('utf-8'),
@ -18,6 +18,7 @@ setup(
'License :: OSI Approved :: MIT License',
],
packages=setuptools.find_packages(),
include_package_data=True,
package_data = {
'pyatmos.data': ['*.npz'],
},