-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·35 lines (34 loc) · 1.15 KB
/
setup.py
File metadata and controls
executable file
·35 lines (34 loc) · 1.15 KB
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
from setuptools import setup,find_packages
setup(
name = 'pyatmos',
version = '1.2.7',
description = 'A package to estimate the vertical structure of atmosphere with various atmospheric density models',
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'),
keywords = ['coesa76','nrlmsise00','jb2008'],
python_requires = '>=3.10',
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
],
packages = find_packages(),
include_package_data = True,
package_data = {'pyatmos.data': ['*.npz'],},
install_requires=[
'scipy',
'numpy',
'numba',
'pandas',
'astropy',
'wget'
]
)