-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (88 loc) · 2.63 KB
/
Copy pathpyproject.toml
File metadata and controls
99 lines (88 loc) · 2.63 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "NREL-landbosse"
dynamic = ["version"]
description = "Wind-Plant Integrated System Design & Engineering Model"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
keywords = ["wind", "turbine", "mdao", "design", "optimization"]
authors = [
{ name = "NLR WISDEM Team", email = "systems.engineering@nlr.gov" },
]
maintainers = [
{ name = "NLR WISDEM Team", email = "systems.engineering@nlr.gov" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: C",
"Programming Language :: Fortran",
]
dependencies = ['numpy', 'openpyxl', 'pandas', 'scipy', 'xlsxwriter', 'openmdao']
[project.optional-dependencies] # Optional
test = ["coveralls", "pytest"]
docs = ["jupyter-book==1.*", "myst-parser", "sphinxcontrib-napoleon"]
develop = ["NREL-landbosse[test, docs]"]
[project.urls]
"Homepage" = "https://github.com/NLRWIndSystems/LandBOSSE"
"Documentation" = "https://nlrwindsystems.readthedocs.io"
"Project" = "https://www.nlr.gov/wind/systems-engineering.html"
#[project.scripts]
# What to do about main.py program
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "landbosse.__version__"}
[tool.setuptools.packages.find]
#where = ["wisdem"]
exclude = ["docs", "post_processing_scripts"]
namespaces = true
[tool.setuptools.package-data]
# If there are data files included in your packages that need to be
# installed, specify them here.
"*" = ["*.yaml", "*.yml", "*.xlsx", "*.txt", "*.csv", "*.md", "*.png"]
[tool.black]
line-length = 120
target-version = ['py311']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
# https://github.com/PyCQA/isort
multi_line_output = "3"
include_trailing_comma = true
force_grid_wrap = false
use_parentheses = true
line_length = "120"
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
known_first_party = ["wisdem"]
length_sort = "1"
profile = "black"
skip_glob = ['__init__.py']
atomic = true
#lines_after_imports = 2
#lines_between_types = 1
#src_paths=isort,test