forked from Parcels-code/Parcels
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 1.01 KB
/
Copy pathsetup.py
File metadata and controls
25 lines (22 loc) · 1.01 KB
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
"""Install Parcels and dependencies."""
try:
from setuptools import find_packages, setup
except ImportError:
from distutils.core import find_packages, setup
with open("README.md") as fh:
long_description = fh.read()
setup(name='parcels',
description="""Framework for Lagrangian tracking of virtual ocean particles in the petascale age.""",
author="oceanparcels.org team",
use_scm_version={'write_to': 'parcels/_version_setup.py', 'local_scheme': 'no-local-version'},
long_description=long_description,
long_description_content_type="text/markdown",
setup_requires=['setuptools_scm', 'setuptools_scm_git_archive'],
python_requires='>=3.8',
packages=find_packages(),
package_data={'parcels': ['include/*',
'examples/*']},
entry_points={'console_scripts': [
'parcels_get_examples = parcels.scripts.get_examples:main',
'parcels_convert_npydir_to_netcdf = parcels.scripts.convert_npydir_to_netcdf:main']}
)