-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 788 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 788 Bytes
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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name='pyvortex',
version='0.3.0',
description='Polar vortex edge detection using Nash criteria',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/pankajkarman/pyvortex',
author='Pankaj Kumar',
author_email='pankaj.kmr1990@gmail.com',
license='MIT',
packages=find_packages(),
install_requires=[
'numpy',
'xarray',
],
extras_require={
'docs': ['pdoc'],
'examples': ['cartopy', 'gif', 'matplotlib', 'pandas', 'scipy', 'tqdm'],
'test': ['pytest'],
},
python_requires=">=3.8",
)