-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (53 loc) · 1.87 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Setup for packaging Apecosm package"
"""
__docformat__ = "restructuredtext en"
import os
from setuptools import setup, find_packages
VERSION_FILE = 'VERSION'
with open(VERSION_FILE) as fv:
version = fv.read().strip()
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="apecosm",
version=version,
author="Apecosm team",
author_email="[email protected]",
maintainer='Nicolas Barrier',
maintainer_email='[email protected]',
description="Python package for the analysis of Apecosm outputs",
long_description_content_type="text/markdown",
keywords="ocean; grid model; ocean ecosystem; biology; deb",
include_package_data=True,
package_data = {'apecosm': ['resources/*', 'templates/*']},
url="https://github.com/apecosm/python-apecosm",
packages=find_packages(),
install_requires=['xarray>=0.1',
'numpy>=1.9',
'netCDF4>=1.1',
'matplotlib>=1.4',
'cartopy',
'pandas',
'nc-time-axis'
],
long_description = long_description,
classifiers = [
#"Development Status :: 5 - Production/Stable",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
# ++ test_suite =
# ++ download_url
platforms=['linux', 'mac osx'],
)