-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 862 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
import versioneer
min_version = (3, 7)
setup(
name="pylook",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Python Distribution Utilities",
author="Antoine Delepoulle",
author_email="[email protected]",
packages=find_packages(),
install_requires=[
"numpy",
"matplotlib",
"netCDF4",
"pyproj",
"numba",
"zarr"
],
python_requires=f'>={".".join(str(i) for i in min_version)}',
package_data={"pylook": ["gshhs_backup/*.nc"]},
entry_points=dict(
console_scripts=[
"PyLook = pylook.appli.pylook:pylook",
"DHeader = pylook.appli.data_header:data_header",
"DataLook = pylook.appli.data_look:data_look",
]
),
)