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
|
[tool.poetry]
name = "dioptas"
version = "0.6.1" # Will be overwritten by poetry-dynamic-versioning
description = "GUI program for reduction and exploration of 2D X-ray diffraction data"
authors = ["Clemens Prescher <clemens.prescher@gmail.com>"]
license = "GPL-3.0"
readme = "README.md"
classifiers = [
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Scientific/Engineering :: Information Analysis',
]
exclude = ["dioptas/tests/*"] # Exclude tests from package
[tool.poetry.scripts]
dioptas = "dioptas:main"
[tool.poetry-dynamic-versioning]
enable = false
vcs = "git"
pattern = "default-unprefixed"
style = "semver"
[tool.poetry-dynamic-versioning.substitution]
files = ["dioptas/__init__.py"]
[tool.poetry.dependencies]
python = "^3.8, <3.13"
EXtra-data = "^1.13.0"
h5py = "^3.10.0"
hdf5plugin = "^4.1.3"
lmfit = "^1.2.1"
pandas = [
{ version ="^2.1.1", python = ">3.9" },
{ version ="^1.3.3", python = "<3.9" }
]
psutil = "^5.9.5"
PyCifRW = "^4.4.5"
PyQt6 = "^6.7"
pyfai = "^2023.5.0"
pyqtgraph = "^0.13.3"
pyshortcuts = "^1.8.1"
QtPy = "^2.3.1"
scikit-image = [
{version = "^0.21.0", python = "<3.9"},
{version = "^0.22.0", python = ">=3.9"}
]
sharedmem = "^0.3.8"
watchdog = "^3.0.0"
pyopengl = "^3.1.7"
pyopengl-accelerate = "^3.1.7"
xypattern = "^1.1.2"
numpy = [
{ version = "^1.24.0", python = "<3.10" },
{ version = "^1.26.0", python = ">=3.10" }
]
scipy = [
{ version = "^1.9.3", python = "<3.10" },
{ version = "^1.11.3", python = ">=3.10" }
]
numexpr = "2.8.4"
qt-material = "^2.14"
[tool.poetry.group.test.dependencies]
pytest = "^6.2.5"
pytest-qt = "*"
mock = "^5.1.0"
[build-system]
requires = ["poetry-core", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
|