forked from DHI/watobs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (49 loc) · 1.39 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="watobs",
version="0.2.dev2",
install_requires=["numpy", "pandas", "requests", "matplotlib"],
extras_require={
"dev": [
"pytest",
"flake8",
"black",
"sphinx",
"myst-parser",
"sphinx-book-theme",
],
"test": ["pytest", "mikeio"],
"notebooks": [
"nbformat",
"nbconvert",
"jupyter",
"folium",
"rtree",
"mapclassify",
"geopandas",
"xarray",
"netcdf4",
"NDBC",
],
},
author="Jesper Sandvig Mariegaard",
author_email="[email protected]",
description="Access water observation data",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/DHI/watobs",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
],
)