-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (45 loc) · 1.32 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
# -*- encoding: utf-8 -*-
import setuptools
with open("README.md", "r") as file:
readme_contents = file.read()
setuptools.setup(
name="roguewavespectrum",
version="0.2.15",
license="Apache 2 License",
install_requires=[
"numpy",
"numba",
"linearwavetheory",
"xarray",
"scipy",
"numba-progress",
"pandas",
"pdoc",
"requests",
"requests-cache",
"matplotlib",
],
extras_require={
"full": [
"qpsolvers",
"cvxopt",
]
},
description="Python package that implements a spectral object for ocean surface gravity waves",
long_description=readme_contents,
long_description_content_type="text/markdown",
author="Pieter Bart Smit",
author_email="[email protected]",
url="https://github.com/sofarocean/oceanwavespectrum.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"]},
)