forked from GoLP-IST/nata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (64 loc) · 2.2 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
[tool.poetry]
authors = ["Anton Helm <[email protected]>"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
description = "Post-processing and visualization for PIC codes"
documentation = "https://github.com/GoLP-IST/nata"
homepage = "https://github.com/GoLP-IST/nata"
include = ["examples/*"]
keywords = ["post-processing", "visualization", "particle-in-cell"]
license = "MIT"
maintainers = [
"Anton Helm <[email protected]>",
"Fabio Cruz <[email protected]>",
]
name = "nata"
readme = "README.md"
repository = "https://github.com/GoLP-IST/nata"
version = "0.0.2"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/GoLP-IST/nata/issues"
[tool.poetry.dependencies]
dask = {extras = ["array"], version = "^2.26.0"}
h5py = "^3.1.0"
ipywidgets = {version = "^7.6.3", optional = true}
jupyter = {version = "^1.0.0", optional = true}
jupyterlab = {version = "^3.0.10", optional = true}
matplotlib = "^3.3.4"
mkdocs = {version = "^1.1.2", optional = true}
mkdocs-jupyter = {version = "^0.17.3", optional = true}
mkdocs-material = {version = "^7.1.5", optional = true}
ndindex = "^1.4"
numpy = "^1.20.1"
pymdown-extensions = {version = "^8.2", optional = true}
python = "^3.8"
mkdocstrings = {version = "^0.15.1", optional = true}
[tool.poetry.dev-dependencies]
hypothesis = "^5.10.4"
pytest = ">5.0"
[tool.poetry.extras]
docs = ["mkdocs", "mkdocs-material", "mkdocs-jupyter", "pymdown-extensions", "mkdocstrings"]
jupyter = ["jupyterlab", "ipywidgets", "jupyter"]
[tool.isort]
atomic = true
force_single_line = true
known_first_party = "nata"
known_third_party = ["attr", "h5py", "matplotlib", "numpy", "pytest", "hypothesis"]
line_length = 88
[tool.black]
line-length = 88
target-version = ['py38']
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]