-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 781 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 781 Bytes
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
[tool.poetry]
name = "super_material"
version = "1.0.0a"
description = "Providing a constant interface to superconductor conductivity computations"
license = "BSD-2-Clause"
authors = ["Paul le Roux <pleroux0@outlook.com>"]
readme = "README.md"
repository = "https://github.com/pleroux0/super_material"
documentation = "https://pleroux0.github.io/super_material/"
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.19.1"
scipy = "^1.5.2"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
jedi = "^0.17.2"
pylint = "^2.5.3"
black = "^19.10b0"
rope = "^0.17.0"
matplotlib = "^3.3.1"
sympy = "^1.6.2"
sphinxcontrib-bibtex = "^1.0.0"
sphinx = "^3.2.1"
ghp_import = "^1.0.0"
sphinx_rtd_theme = "^0.5.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"