-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (31 loc) · 1.12 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
from setuptools import setup
setup(
name='PyALMA3',
version='1.0.1',
author='Flavio Petricca, Saikiran Tharimena, Daniele Melini, Giorgio Spada, Amirhossein Bagheri' +
'Marshall J. Styczinski, Steven D. Vance',
author_email='flavio.petricca@uniroma1.it',
description='Python plAnetary Love nuMbers cALculator',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/drsaikirant88/PyALMA3',
project_urls={
'Bug tracker': 'https://github.com/drsaikirant88/PyALMA3/issues',
'Publication': 'https://doi.org/10.1093/gji/ggac263'
},
classifiers=[
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent'
],
packages=['alma'],
package_dir={'alma': 'alma'},
install_requires=[
'numpy >= 1.26.3',
'mpmath >= 1.3.0',
'psutil >= 5.9.7',
'joblib >= 1.3.2',
'toml >= 0.10.2'
],
include_package_data=True # Files to include are listed in MANIFEST.in
)