-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 983 Bytes
/
Copy pathsetup.py
File metadata and controls
36 lines (34 loc) · 983 Bytes
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
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='meltPT',
version='v1.2.1',
author = 'F. McNab, P. W. Ball',
author_email="mcnab@gfz-potsdam.de",
url="https://github.com/fmcnab/meltPT",
long_description=long_description,
long_description_content_type="text/markdown",
description=("Calculate pressures and temperatures of melting for basaltic rocks and fit with melting models."),
packages=['meltPT'],
install_requires=[
'pandas~=1.3',
'numpy~=1.21',
'matplotlib~=3.5',
'scipy~=1.7',
'shapely~=1.8',
'pyMelt~=1.96',
'pyyaml~=6.0',
'sympy~=1.10'
],
extras_require={'docs': [
'sphinx~=5.1',
'nbsphinx~=0.8',
'nbsphinx_link~=1.3',
'sphinx-rtd-theme~=1.0',
'ipykernel~=6.15'
]
},
scripts=['meltPT/meltPT'],
python_requires='>=3.7'
)