-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
63 lines (52 loc) · 1.37 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
# Base poetry configuration
[tool.poetry]
name = "astro-plasma"
version = "0.1.0"
description = "A Cloudy database with functions to quickly interpolate physical state of astrophysical plasma without detailed Plasma modelling."
authors = ["Gurkirat Singh <tbhaxor@gmail.com>", "Alankar <alankardutta@iisc.ac.in>"]
license = "MIT"
readme = "README.md"
packages = [{include = "astro_plasma"}]
# Main install requirements
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.28.1"
numpy = "^1.24.1"
h5py = "^3.7.0"
urllib3 = "^1.26.15"
python-dotenv = "1.0.0"
scipy = "1.9.3"
tqdm = "^4.65.0"
werkzeug = "^3.0.1"
pytest = "^7.4.3"
poetry-plugin-export = "^1.6.0"
colorama = "^0.4.6"
# Packages required for development
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
ruff = "^0.0.261"
mypy = "^1.2.0"
types-requests = "^2.28.11.17"
pre-commit = "^3.3.1"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
matplotlib = "^3.7.1"
[tool.poetry.group.cloudy_run]
optional = true
[tool.poetry.group.cloudy_run.dependencies]
mpi4py = "^3.1.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# Ruff configurations
[tool.ruff]
select = ["E", "F", "Q"]
line-length = 160
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
# Black formatter configuration
[tool.black]
line-length = 160