-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
66 lines (61 loc) · 1.79 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
"""Setup file for ml4convection."""
from setuptools import setup
PACKAGE_NAMES = [
'ml4convection', 'ml4convection.io', 'ml4convection.machine_learning',
'ml4convection.plotting', 'ml4convection.utils', 'ml4convection.scripts',
'ml4convection.figures'
]
KEYWORDS = [
'machine learning', 'deep learning', 'artificial intelligence',
'data science', 'weather', 'meteorology', 'thunderstorm', 'convection',
'satellite', 'radar'
]
SHORT_DESCRIPTION = (
'Uses machine learning to predict convective initiation and decay from '
'satellite data.'
)
LONG_DESCRIPTION = SHORT_DESCRIPTION
CLASSIFIERS = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3'
]
# You also need to install the following packages, which are not available in
# pip. They can both be installed by "git clone" and "python setup.py install",
# the normal way one installs a GitHub package.
#
# https://github.com/matplotlib/basemap
# https://github.com/tkrajina/srtm.py
PACKAGE_REQUIREMENTS = [
'numpy',
'scipy',
'tensorflow',
'keras',
'scikit-learn',
'scikit-image',
'netCDF4',
'pyproj',
'opencv-python',
'matplotlib',
'pandas',
'shapely',
'geopy',
'metpy'
]
if __name__ == '__main__':
setup(
name='ml4convection',
version='0.1',
description=SHORT_DESCRIPTION,
long_description=LONG_DESCRIPTION,
author='Ryan Lagerquist',
author_email='[email protected]',
url='https://github.com/thunderhoser/ml4convection',
packages=PACKAGE_NAMES,
scripts=[],
keywords=KEYWORDS,
classifiers=CLASSIFIERS,
include_package_data=True,
zip_safe=False,
install_requires=PACKAGE_REQUIREMENTS
)