-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
47 lines (42 loc) · 1.29 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
[tool.poetry]
name = "dfcs_vipa"
version = "1.0.0"
description = "Direct frequency comb spectroscopy with a VIPA spectrograph"
authors = ["Grzegorz Kowzan <[email protected]>"]
homepage = "https://github.com/gkowzan/dfcs_vipa"
repository = "https://github.com/gkowzan/dfcs_vipa"
license = "BSD-3-Clause"
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Physics']
packages = [
{ include = "dfcs_vipa/*.py" },
{ include = "dfcs_vipa/scripts/*.py" },
{ include = "dfcs_vipa/data/*.py" }
]
include = [
{ path = "LICENSE.txt", format="sdist" }
]
[tool.poetry.scripts]
labview_grid = "dfcs_vipa.scripts.labview_grid:main"
combwatch = "dfcs_vipa.scripts.combwatch:main"
hdf5_convert = "dfcs_vipa.scripts.hdf5_convert:main"
[tool.poetry.dependencies]
python = ">=3.7"
numpy = ">=1.18.1"
h5py = ">=2.10.0"
xarray = ">=0.15.0"
scipy = ">=1.4.1"
lxml = ">=4.5.0"
[tool.poetry.dev-dependencies]
pytest = "*"
mypy = "*"
[tool.poetry.extras]
doc = ["sphinx", "numpydoc", "sphinx_rtd_theme"]
interactive = ["matplotlib", "PyQt5", "ipython"]
[build-system]
requires = ["poetry-core>=1.0.0", "wheel"]
build-backend = "poetry.core.masonry.api"