-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (42 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
51 lines (42 loc) · 1.02 KB
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
[tool.poetry]
name = "simple-idealized-1d-nlse"
version = "0.0.4"
description = "A flexible and efficient solver for the 1D Nonlinear Schrödinger Equation"
authors = [
"Sandy H. S. Herho <sandy.herho@email.ucr.edu>",
"Iwan P. Anwar",
"Faruq Khadami",
"Rusmawan Suwarman",
"Dasapta E. Irawan"
]
license = "WTFPL"
readme = "README.md"
packages = [{include = "simple_idealized_1d_nlse", from = "src"}]
[tool.poetry.dependencies]
python = "^3.8"
numpy = "*"
scipy = "*"
matplotlib = "*"
netCDF4 = "*"
pyyaml = "*"
tqdm = "*"
[tool.poetry.group.performance]
optional = true
[tool.poetry.group.performance.dependencies]
numba = "*"
[tool.poetry.group.fancy]
optional = true
[tool.poetry.group.fancy.dependencies]
colorama = "*"
tabulate = "*"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "*"
black = "*"
flake8 = "*"
[tool.poetry.scripts]
nlse-simulate = "simple_idealized_1d_nlse.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"