forked from neutronpy/neutronpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.49 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
[tool.poetry]
name = "neutronpy"
version = "2.0.2"
description = "NeutronPy is a collection of commonly used tools aimed at facilitating the analysis of neutron scattering data. NeutronPy is built primarily using the numpy and scipy python libraries, with a translation of ResLib 3.4c (MatLab) routines for Instrument resolution calculations."
authors = ["David M Fobes <[email protected]>"]
readme = 'README.rst'
license = "MIT"
packages = [
{ include = 'neutronpy' },
{ include = 'neutronpy/crystal' },
{ include = 'neutronpy/data' },
{ include = 'neutronpy/fileio' },
{ include = 'neutronpy/fileio/loaders' },
{ include = 'neutronpy/instrument' },
{ include = 'neutronpy/scattering' },
{ include = 'neutronpy/lsfit' },
]
include = [
{ path = 'neutronpy/database/*.json', format = 'sdist' },
{ path = 'neutronpy/database/*.json', format = 'wheel' },
{ path = 'neutronpy/ui/*.ui', format = 'sdist' },
{ path = 'neutronpy/ui/*.ui', format = 'wheel' },
]
[tool.poetry.dependencies]
python = "^3.7"
numpy = "^1.10"
scipy = "^1.0"
matplotlib = "^3.5"
lmfit = "^1.0.3"
h5py = "^3.1.0"
[tool.poetry.dev-dependencies]
pytest = ">=6.1.2"
mock = ">=4.0.2"
codecov = ">=2.1.10"
pytest-cov = ">=2.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--verbose -p no:warnings"
testpaths = [
"tests",
]
[tool.poetry.plugins."console_scripts"]
neutronpy = "neutronpy.gui:launch"