-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (35 loc) · 859 Bytes
/
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
[project]
name = "shimeri"
version = "0.1.3"
description = "A Python package for calculating psychrometric properties of moist air and plotting psychrometric charts."
authors = [
{ name = "Shoji, Yutaka", email = "ytk.shoji@gmail.com" }
]
dependencies = [
"numpy>=1.26",
"plotly>=5.10",
]
readme = "README.md"
requires-python = ">= 3.9"
[project.urls]
Homepage = "https://github.com/yutaka-shoji/shimeri"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ruff>=0.5.2",
"pyright>=1.1.371",
"mkdocstrings[python]>=0.25.1",
"mkdocs-material>=9.5.29",
"pymdown-extensions>=10.8.1",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/shimeri"]
[tool.ruff]
line-length = 88
[tool.pyright]
venvPath = "."
venv = ".venv"