forked from schism-dev/pyschism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·39 lines (39 loc) · 1.04 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
#!/usr/bin/env python
import pathlib
import setuptools
parent = pathlib.Path(__file__).parent.absolute()
conf = setuptools.config.read_configuration(parent / 'setup.cfg')
meta = conf['metadata']
setuptools.setup(
name=meta['name'],
version=meta['version'],
author=meta['author'],
author_email=meta['author_email'],
description=meta['description'],
long_description=meta['long_description'],
long_description_content_type="text/markdown",
url=meta['url'],
packages=setuptools.find_packages(),
python_requires='>=3.6',
install_requires=[
'matplotlib',
'netCDF4',
'pyproj',
'shapely',
'fiona',
'f90nml',
'ordered_set',
'psutil',
'paramiko',
'scipy',
],
entry_points={
'console_scripts': [
'plot_mesh = pyschism.cmd.plot_mesh:main',
"schrun = pyschism.__main__:main",
'tidal_run = pyschism.cmd.tidal_run:main',
]
},
tests_require=['nose'],
test_suite='nose.collector',
)