-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (35 loc) · 1.21 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
from setuptools import setup
setup(
name='PlanetProfile',
version='2.3.19',
author='Marshall J. Styczinski',
author_email='itsmoosh@gmail.com',
description='Self-consistent geophysical models for large moons and ocean worlds',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/vancesteven/PlanetProfile',
project_urls={
'Bug tracker': 'https://github.com/vancesteven/PlanetProfile/issues',
'Publication': 'https://doi.org/10.1029/2022EA002748'
},
classifiers=[
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent'
],
packages=['PlanetProfile'],
package_dir={'PlanetProfile': 'PlanetProfile'},
install_requires=[
'numpy >= 1.26.3',
'scipy >= 1.11.4',
'mpmath >= 1.3.0',
'matplotlib >= 3.8.2',
'SeaFreeze >= 0.9.6',
'MoonMag >= 1.7.0',
'gsw >= 3.6.16',
'spiceypy >= 6.0.0',
'cmasher >= 1.6.3',
'hdf5storage >= 0.1.19'
],
include_package_data=True # Files to include are listed in MANIFEST.in
)