-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
89 lines (80 loc) · 2.42 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
[build-system]
requires = ["build", "setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["iris"]
[tool.setuptools.dynamic]
version = {attr = "iris.__version__"}
[project]
name = "iris-ued"
dynamic = ["version"]
authors = [
{ name="Laurent P. René de Cotret", email="[email protected]" },
]
maintainers = [
{ name="Laurent P. René de Cotret", email="[email protected]" },
]
description = "Ultrafast electron diffraction data exploration"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.7, <4"
dependencies = [
"numpy >= 1.22,< 3",
"scipy >= 1.0.0",
"h5py >= 2.10.0, < 4",
"PyQt5 >=5.15, <6",
"crystals >= 1.3.0, < 2",
"scikit-ued >= 2.1.4, < 3",
"qdarkstyle >= 2.8, < 3",
"pyqtgraph >= 0.11",
"npstreams >= 1.6.5, < 2",
"packaging >= 20",
]
keywords=["crystallography", "material science", "structural biology"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Visualization",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
]
[project.optional-dependencies]
development = [
"Sphinx >= 3",
"sphinx_rtd_theme >= 0.4",
"pytest >= 6",
"flaky >= 3,<4",
"black",
"isort",
]
[project.urls]
Documentation = "https://iris-ued.readthedocs.io/"
Repository = "https://github.com/LaurentRDC/iris-ued"
"Bug Tracker" = "https://github.com/LaurentRDC/iris-ued/issues"
[project.scripts]
iris-cli = "iris.__main__:main"
[tool.black]
line-length = 120
include = '\.pyi?$'
[tool.isort]
profile = "black"
src_paths = ["iris/**/*.py"]
[tool.pytest.ini_options]
minversion = "6.0"
log_cli_level = "INFO"
# Very cool ability for pytest to also run doctests on package contents with `-doctest-modules`
addopts = [
"--doctest-modules",
"--ignore=iris/tests/broken_plugin.py",
]
testpaths = ["iris/tests"]