-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
49 lines (43 loc) · 1.21 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
from setuptools import find_packages, setup
'''
@Author: Pedro Herrera-Lormendez
'''
vfile = {}
exec(open('jcclass/version.py').read(), vfile)
with open('README.md', 'r') as fh:
long_description = fh.read()
#with open('jc_class/requirements.txt', 'r') as fh:
# install_requires = fh.read()
setup(
name='jcclass',
#version = '0.0.2',
include_package_data = True,
keywords='circulations, CTs, WTs, synoptic',
author = 'Pedro Herrera-Lormendez',
author_email='[email protected]',
description = 'Jenkinson and Collison automated gridded classification',
long_description = long_description,
long_description_content_type='text/markdown',
url = 'https://github.com/PedroLormendez/jcclass',
license = 'MIT',
#packages =['jcclass'],
packages=find_packages(),
zip_safe = False,
python_requires='>=3.7',
setuptools_git_versioning ={
'version_callback' : vfile['__version__'],
'dev_template' : '{tag}.posst{ccount}',
'dirty_template': '{tag}.post{ccount}'
},
setup_requires = ['setuptools-git-versioning', 'numpy'],
install_requires = [
'numpy>=1.19.5',
'xarray>=0.16.2',
'matplotlib>=3.2.0',
'pyproj',
'cartopy>=0.17.0',
'cftime',
'netCDF4',
#'h5netcdf',
]
)