-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
45 lines (35 loc) · 1.53 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
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='baysparpy',
version='0.0.3',
description='An Open Source Python package for TEX86 calibration',
long_description=readme(),
license='GPLv3',
author='S. Brewster Malevich',
author_email='malevich@email.arizona.edu',
url='https://github.com/brews/baysparpy',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
],
keywords='marine paleoclimate tex86 calibration',
packages=find_packages(exclude=['docs']),
install_requires=['numpy', 'scipy', 'matplotlib', 'attrs', 'tqdm', 'cartopy'],
tests_require=['pytest'],
package_data={'bayspar': ['modelparams/Output_SpatAg_subT/*.mat',
'modelparams/Output_SpatAg_SST/*.mat',
'observations/*.mat',
'example_data/*.csv']},
)