-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (58 loc) · 1.58 KB
/
pyproject.toml
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
# Project configuration for Ard
# TOML spec: https://toml.io/en/v1.0.0
[build-system]
requires = [
"setuptools",
]
build-backend = "setuptools.build_meta"
# https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
[tool.setuptools]
packages = ["ard"]
[project]
name = "Ard"
version = "1.0.0-alpha0"
authors = [
{name = "Cory Frontin", email = "[email protected]"},
{name = "Rafael Mudafort", email = "[email protected]"},
]
description = "A package for multidisciplinary and/or multifidelity wind farm design"
readme= "README.md"
requires-python = ">=3.10, <3.13"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
# "Programming Language :: Python :: 3.13",
]
dependencies = [
"numpy",
# "floris>=4.2.1",
"floris @ git+https://github.com/rafmudaf/floris.git@defaults_init#egg=floris",
"wisdem==3.17.0",
"NLopt",
"marmot-agents",
"openmdao",
"shapely",
]
[project.optional-dependencies]
dev = [
"black",
"pytest",
"pytest-cov",
]
docs = [
"pyxdsm",
"jupyter-book",
"sphinx-book-theme",
"sphinx-autodoc-typehints",
]
[project.urls]
# Homepage = "https://example.com"
Documentation = "https://wisdem.github.io/Ard"
Repository = "https://github.com/wisdem/Ard.git"
Issues = "https://github.com/wisdem/Ard/issues"
# Changelog = "https://github.com/wisdem/Ard/blob/main/CHANGELOG.md"