-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (56 loc) · 1.47 KB
/
setup.py
File metadata and controls
58 lines (56 loc) · 1.47 KB
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
# -*- encoding: utf-8 -*-
import setuptools
with open("README.md", "r") as file:
readme_contents = file.read()
setuptools.setup(
name="roguewave",
version="0.2.27",
license="Apache 2 License",
install_requires=[
"pysofar>=0.1.13",
"numpy",
"netCDF4",
"pandas",
"scipy",
"numba",
"tqdm",
"h5netcdf",
"boto3",
"xarray",
"requests",
"numba",
"numba_progress",
"linearwavetheory",
],
extras_require={
"full": [
"qpsolvers",
"cvxopt",
"pygrib",
],
"grib": [
"pygrib",
],
"optimization": [
"cvxopt",
"pygrib",
],
},
description="Python package to interact with Sofar wave data",
long_description=readme_contents,
long_description_content_type="text/markdown",
author="Pieter Bart Smit",
author_email="sofaroceangithubbot@gmail.com",
url="https://github.com/sofarocean/roguewave.git",
package_dir={"": "src"},
packages=setuptools.find_packages("src"),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
project_urls={"Sofar Ocean Site": "https://www.sofarocean.com"},
include_package_data=True,
package_data={"": ["*.json"]},
)