-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.07 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.07 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
# -*- encoding: utf-8 -*-
import setuptools
with open("README.md", "r") as file:
readme_contents = file.read()
setuptools.setup(
name="linearwavetheory",
version="0.0.23",
license="Apache 2 License",
install_requires=[
"numpy",
"numba_progress",
"numba",
"pdoc",
],
description="Python package that implements linear wave theory for ocean surface gravity waves",
long_description=readme_contents,
long_description_content_type="text/markdown",
author="Pieter Bart Smit",
author_email="sofaroceangithubbot@gmail.com",
url="https://github.com/sofarocean/linearwavetheory.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"]},
)