-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
79 lines (72 loc) · 1.91 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools"]
[project]
name = "baked-brie"
description = "The Barrier Inlet Environment (BRIE) Model"
authors = [
{name = "Katherine Anarde"},
{email = "kanarde@ncsu.edu"},
]
maintainers = [
{name = "Katherine Anarde"},
{email = "kanarde@ncsu.edu"},
]
keywords = ["earth science", "coast", "barrier inlet"]
license = {file = "LICENSE.rst"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.8"
dependencies = [
"bmipy",
"numpy",
"pyyaml",
"scipy",
]
dynamic = ["readme", "version"]
[project.urls]
homepage = "https://github.com/UNC-CECL/brie"
documentation = "https://github.com/UNC-CECL/brie"
repository = "https://github.com/UNC-CECL/brie"
changelog = "https://raw.githubusercontent.com/UNC-CECL/brie/master-brie/CHANGES.rst"
[project.optional-dependencies]
dev = ["nox"]
[tool.setuptools.packages.find]
where = ["."]
include = ["brie*"]
[tool.setuptools.dynamic]
readme = {file = ["README.rst", "AUTHORS.rst", "CHANGES.rst"]}
version = {attr = "brie._version.__version__"}
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["brie", "tests"]
norecursedirs = [".*", "*.egg*", "build", "dist"]
addopts = """
--ignore setup.py
--tb native
--strict
--durations 16
--doctest-modules
-vvv
"""
doctest_optionflags = [
"NORMALIZE_WHITESPACE",
"IGNORE_EXCEPTION_DETAIL",
"ALLOW_UNICODE"
]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
line_length = 88