-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
87 lines (81 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
80
81
82
83
84
85
86
87
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.sdist]
include = [
"AUTHORS.rst",
"CHANGELOG.rst",
"CONTRIBUTING.rst",
"LICENSE",
".editorconfig",
".readthedocs.yml",
"tox.ini",
"docs/",
]
exclude = ["docs/_build"]
[project]
name = "fluprodia"
dynamic = ["version", "description"]
readme = "README.rst"
authors = [
{name = "Francesco Witte", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.9"
dependencies = [
"CoolProp>=6.4",
"numpy>=1.13.3",
]
license = {text = "MIT"}
[project.urls]
Homepage = "https://github.com/fwitte/fluprodia"
Documentation = "https://fluprodia.readthedocs.io/"
Changelog = "https://fluprodia.readthedocs.io/en/latest/changelog.html"
"Issue Tracker" = "https://github.com/fwitte/fluprodia/issues"
[project.optional-dependencies]
dev = [
"build",
"flit",
"furo",
"matplotlib",
"pytest",
"sphinx>=7.2.2",
"sphinx-copybutton",
"sphinx-design",
"tespy",
"tox",
]
[tool.pytest.ini_options]
addopts = """
-ra
--strict-markers
--doctest-modules
--doctest-glob=\"*.rst\"
--tb=short
--pyargs
--ignore=docs/conf.py
--ignore=docs/_build/
"""
testpaths = [
"src/",
"docs/",
]
[tool.isort]
force_single_line = true
line_length = 120
known_first_party = "fluprodia"
default_section = "THIRDPARTY"
forced_separate = "test_fluprodia"