forked from GoLP-IST/nata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
94 lines (87 loc) · 2.41 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[tool.poetry]
name = "nata"
version = "0.0.2"
description = "Post-processing and visualization for PIC codes"
authors = [
"Anton Helm <[email protected]>"
]
maintainers = [
"Anton Helm <[email protected]>",
"Fabio Cruz <[email protected]>"
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/GoLP-IST/nata"
repository = "https://github.com/GoLP-IST/nata"
documentation = "https://github.com/GoLP-IST/nata"
keywords = ["post-processing", "visualization", "particle-in-cell"]
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",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/GoLP-IST/nata/issues"
[tool.poetry.dependencies]
python = "^3.6"
numpy = "^1.18.1"
matplotlib = "^3.1.2"
h5py = "^2.10.0"
typing_extensions = {version = "^3.7.4", python = "<3.8"}
ipywidgets = "^7.5.1"
dataclasses = {version = "^0.7", python = ">=3.6 <3.7"}
sphinx = {version = "^3.0.3", optional = true}
sphinx-rtd-theme = {version = "^0.4.3", optional = true}
recommonmark = {version = "^0.6.0", optional = true}
jupyterlab = {version = "^2.1.2", optional = true}
ndindex = "^1.3.1"
[tool.poetry.dev-dependencies]
pytest = ">5.0"
pytest-cov = "^2.8.1"
pre-commit = "^2.0.1"
tox = "^3.14.3"
hypothesis = "^5.10.4"
black = "^19.10b0"
[tool.poetry.extras]
docs = ["sphinx", "sphinx-rtd-theme", "recommonmark"]
# all the tooling required for developing nata
wiptools = ["jupyterlab"]
[tool.isort]
atomic=true
force_single_line=true
line_length=80
known_first_party="nata"
known_third_party=["attr", "h5py", "matplotlib", "numpy", "pytest", "hypothesis"]
[tool.black]
line-length = 80
target-version = ['py36', 'py37', 'py38']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"