-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (30 loc) · 1.04 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
from setuptools import setup
setup(
name='MoonMag',
version='1.7.5',
author='Marshall J. Styczinski',
author_email='marshall.styczinski@bmsis.org',
description='Magnetic induction calculations for sounding of icy moons',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/itsmoosh/MoonMag',
project_urls={
'Bug tracker': 'https://github.com/itsmoosh/MoonMag/issues',
'Original publication': 'https://doi.org/10.1016/j.icarus.2021.114840'
},
classifiers=[
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent'
],
packages=['MoonMag'],
package_dir={'MoonMag': 'MoonMag'},
install_requires=[
'numpy >= 1.24.4',
'scipy >= 1.11.4',
'mpmath >= 1.3.0',
'matplotlib >= 3.8.2',
'spiceypy >= 6.0.0'
],
include_package_data=True # Files to include are listed in MANIFEST.in
)