-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
30 lines (28 loc) · 1.02 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
# python geopack setup.py
import setuptools
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name='geopack',
version='1.0.11',
author='Sheng Tian',
author_email='ts0110@atmos.ucla.edu',
description='Python version of geopack and Tsyganenko models, compatible with geopack05 and geopack08',
long_description=long_description,
long_description_content_type='text/markdown',
url= 'https://github.com/tsssss/geopack',
install_requires= ['numpy','scipy'],
platforms= ['Mac OS'],
license= 'MIT',
keywords= ['geopack','space physics','Tsyganenko model'],
packages= setuptools.find_packages(),
package_data={'':['*.txt','*.md']},
classifiers= [
'Programming Language :: Python :: 3',
'Operating System :: MacOS',
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Physics'
],
)