-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (46 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
49 lines (46 loc) · 1.71 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
[build-system]
requires = ["setuptools>=64.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mhkit_python_utils"
# Release version format:
# - Major.Minor.Patch, i.e., 0.6.0
# Non Release version format:
# - <Next Major (opt)>.<Next Minor>.Patch-<label>.Build, i.e., 0.7.0-dev.1
# - Labels can be 'dev', 'alpha', 'beta', 'rc' (release candidate)
version = "1.0.1"
description = "A utility package that enables data exchange and interoperability between MHKiT-MATLAB and MHKiT-Python. Part of the MHKiT (Marine and Hydrokinetic Toolkit) project."
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Rebecca Fao", email = "rebecca.fao@nrel.gov" },
{ name = "Chris Ivanov", email = "chris.ivanov@nrel.gov" },
{ name = "Andrew Simms", email = "andrew.simms@nrel.gov" },
]
maintainers = [
{ name = "Andrew Simms", email = "andrew.simms@nrel.gov" },
{ name = "Rebecca Fao", email = "rebecca.fao@nrel.gov" },
]
license = { text = "BSD 3-Clause License" }
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License"
]
dependencies = [
"mhkit>=0.9.0"
]
[tool.setuptools]
packages = ["mhkit_python_utils"]
zip-safe = false
include-package-data = true
[project.urls]
Homepage = "https://github.com/MHKiT-Software/MHKiT-MATLAB"
Documentation = "https://mhkit-software.github.io/MHKiT/"
Repository = "https://github.com/MHKiT-Software/MHKiT-MATLAB"