-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
70 lines (66 loc) · 2.07 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
[tool.poetry]
name = "pyfluids"
version = "2.7.2"
description = "Simple, full-featured, lightweight CoolProp wrapper for Python"
authors = [
"Vladimir Portyanikhin <v.portyanikhin@ya.ru>",
]
license = "MIT"
readme = "PyPI.md"
homepage = "https://github.com/portyanikhin/PyFluids"
repository = "https://github.com/portyanikhin/PyFluids"
documentation = "https://github.com/portyanikhin/PyFluids"
keywords = [
"CoolProp",
"fluids",
"mixtures",
"humid",
"air",
"thermophysical",
"properties",
"thermodynamics",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
]
packages = [
{ include = "pyfluids" },
]
[tool.poetry.dependencies]
python = ">=3.8, <3.13"
CoolProp = "6.6.0"
tomli = "2.2.1"
[tool.poetry.group.test.dependencies]
pytest = "8.3.4"
pytest-asyncio = "0.24.0"
pytest-cov = "5.0.0"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"