-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
50 lines (43 loc) · 1.56 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
# Always prefer setuptools over distutils
import setuptools # this is the "magic" import
import monte_python
from numpy.distutils.core import setup, Extension
#from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='monte_python',
version=monte_python.__version__,
description='Methods for Object-based and Neighborhood Threat Evaluation in Python',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/WarnOnForecast/MontePython',
author='NOAA National Severe Storms Laboratory',
classifiers=[ # Optional
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Intended Audience :: Scientists',
'Programming Language :: Python :: 3'
],
install_requires = [
'scikit-learn',
'scikit-image>=0.18.1',
'matplotlib<=3.4.3',
'xarray >=0.21.1',
'numba',
'numba-kdtree',
'scipy',
],
packages=['monte_python', 'monte_python._plot'], # Required
python_requires='>=3.8, <4',
package_dir={'monte_python': 'monte_python'},
project_urls={ # Optional
'Bug Reports': 'https://github.com/WarnOnForecast/MontePython/issues',
'Source': 'https://github.com/WarnOnForecast/MontePython',
},
)