forked from laishenggx/T-N_Wave-Activity-Flux
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
45 lines (42 loc) · 1.42 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#-*-coding:utf-8-*-
from setuptools import setup
from setuptools import find_packages
# read the contents of README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='tnflux',
version='0.9.2',
keywords='tn wave activity flux',
description='Caculating the T-N Wave Activity Flux derived by Takaya and Nakamura (JAS,2001).',
long_description=long_description,
long_description_content_type='text/markdown',
author='Lai Sheng<[email protected]>',
author_email='[email protected]',
maintainer='Yongpeng Zhang',
maintainer_email='[email protected]',
url='https://github.com/jokervTv/T-N_Wave-Activity-Flux',
license='MIT License',
packages=find_packages(where='.', exclude=(), include=('*',)),
platforms='any',
install_requires=[
'numpy'
],
data_files=[('', [
'LICENSE',
'img/eq38.jpg',
'img/eq38_hor.jpg',
'img/jan1981.jpg',
'img/psnh_mon_hist_waf300_198101.jpg'
])],
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
]
)