-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
79 lines (63 loc) · 2.59 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
"""
Created on 19.09.2022
THIS DOCUMENT IS WORK IN PROGRESS
Based on: https://github.com/pypa/sampleproject
@author: Clara Burgard, [email protected]
Copyright (C) {2022} {Clara Burgard}
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
import setuptools
import pathlib
import os
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = open(os.path.join(here, 'README.rst'), encoding='utf-8').read()
setuptools.setup(
#The project's name
name='assess_param_funcs',
#The project's version
version='0.1',
#The project's metadata
author='Clara Burgard',
author_email='[email protected]',
description='Scripts accompanying the paper "An assessment of basal melt parameterisations for Antarctic ice shelves"',
long_description=long_description,
#The project's main homepage.
url='https://github.com/ClimateClara/scripts_paper_assessment_basal_melt_param',
#The project's license
license='GPL-3.0',
packages=setuptools.find_packages(exclude=['docs', 'tests*', 'examples']),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
],
project_urls={
'Source': 'https://github.com/ClimateClara/scripts_paper_assessment_basal_melt_param',
'Tracker': 'https://github.com/ClimateClara/scripts_paper_assessment_basal_melt_param/issues',
# 'Documentation': 'https://multimelt.readthedocs.io',
},
keywords='earth-sciences climate-modeling ice-sheet antarctica oceanography',
python_requires='>=3.5',
install_requires=[
'numpy',
'xarray',
'pandas',
'tqdm',
'scipy',
'gsw',
'pyproj',
'dask'
],
)