-
Notifications
You must be signed in to change notification settings - Fork 518
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (61 loc) · 2.17 KB
/
pyproject.toml
File metadata and controls
74 lines (61 loc) · 2.17 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "openfast_io"
# dynamic = ["version"]
version = "4.0.2"
description = "Readers and writers for OpenFAST files."
license = {file = "../LICENSE"}
authors = [
{name = "Mayank Chetan", email = "mayank.chetan@nrel.gov" },
{name = "Andy Platt", email = "andy.platt@nrel.gov" },
{name = "Derek Slaughter", email = "derek.slaughter@nrel.gov" },
{ name = "NREL WISDEM Team", email = "systems.engineering@nrel.gov" },
]
maintainers = [
{name = "Mayank Chetan", email = "mayank.chetan@nrel.gov" },
{name = "Andy Platt", email = "andy.platt@nrel.gov" },
{name = "Derek Slaughter", email = "derek.slaughter@nrel.gov" },
]
readme = "README.md"
requires-python = ">3.10"
classifiers = [ # Optional
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
# Indicate who your project is intended for
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
# Specify the Python versions you support here. In particular, ensure
# that you indicate you support Python 3. These classifiers are *not*
# checked by "pip install". See instead "python_requires" below.
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"numpy>1.0",
"pandas>2.0",
"ruamel_yaml>0.18",
"deepdiff>8.0",
]
[project.urls]
homepage = "https://github.com/OpenFAST/openfast"
documentation = "https://openfast.readthedocs.io/en/main/"
repository = "https://github.com/OpenFAST/openfast"
Issues = "https://github.com/OpenFAST/openfast/issues"
[project.optional-dependencies]
rosco = ["rosco>2.9.2"]
xlrd = ["xlrd>2"]
all = ["rosco>2.9.2", "xlrd>2"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "openfast_io/_version.py"