forked from DHI/modelskill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (60 loc) · 1.66 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("LICENSE") as fh:
license = fh.read()
setuptools.setup(
name="fmskill",
version="0.5.dev3",
install_requires=[
"numpy",
"pandas",
"mikeio >= 0.7",
"shapely >= 1.7.0",
"matplotlib",
"xarray",
"markdown",
"jinja2",
"requests",
],
extras_require={
"dev": [
"pytest",
"sphinx",
"sphinx-rtd-theme",
"black==20.8b1",
"plotly >= 4.5",
],
"test": [
"pytest",
"netCDF4",
"openpyxl",
"dask",
],
},
entry_points="""
[console_scripts]
fmskill=fmskill.cli:report
""",
author="Jesper Sandvig Mariegaard",
author_email="[email protected]",
description="Compare results from MIKE FM simulations with observations.",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/DHI/fmskill",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
],
)