-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 805 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 805 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
28
29
30
31
32
33
# -*- coding:utf-8 -*-
import os
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
exec(open(os.path.join(here, 'esep/version.py')).read())
setuptools.setup(
name='ESEP',
description='ESEP - Earth Science Exploration Processing',
author='Chuangwu Deng',
url='https://github.com/lyingTree/esep',
version=__version__,
license='GPLv2',
python_requires='>=3.7',
install_requires=[
'numpy',
'scipy',
'matplotlib',
'netCDF4',
'pyproj',
'cartopy',
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Researcher'
],
packages=setuptools.find_packages(),
include_package_data=True,
setup_requires=['setuptools_scm'],
tests_require=['pytest']
)