-
Notifications
You must be signed in to change notification settings - Fork 52
/
setup.py
92 lines (86 loc) · 3.89 KB
/
setup.py
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
90
91
92
from __future__ import annotations
from pathlib import Path
import setuptools
from build import build
__version_tag__ = "3.22.dev"
setup_kwargs = {
"name": "dials",
"version": __version_tag__,
"long_description": Path(__file__).parent.joinpath("README.md").read_text(),
"description": "Diffraction Integration for Advanced Light Sources",
"author": "Diamond Light Source",
"license": "BSD-3-Clause",
"author_email": "[email protected]",
"project_urls": {
"homepage": "https://dials.github.io",
"repository": "https://github.com/dials/dials",
},
"packages": setuptools.find_packages(where="src"),
"package_dir": {"": "src"},
"package_data": {
"": ["*", "boost_python/*"],
"dials": [
"static/katex/*",
"static/katex/fonts/*",
"static/katex/contrib/*",
"static/js/*",
"static/css/*",
"templates/*",
],
"dials.algorithms": ["spatial_indexing/*"],
},
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
],
"entry_points": {
"libtbx.precommit": ["dials=dials"],
"dxtbx.profile_model": [
"gaussian_rs = dials.extensions.gaussian_rs_profile_model_ext:GaussianRSProfileModelExt",
"ellipsoid = dials.extensions.ellipsoid_profile_model_ext:EllipsoidProfileModelExt",
],
"dxtbx.scaling_model_ext": [
"physical = dials.algorithms.scaling.model.model:PhysicalScalingModel",
"KB = dials.algorithms.scaling.model.model:KBScalingModel",
"array = dials.algorithms.scaling.model.model:ArrayScalingModel",
"dose_decay = dials.algorithms.scaling.model.model:DoseDecay",
],
"dials.index.basis_vector_search": [
"fft1d = dials.algorithms.indexing.basis_vector_search:FFT1D",
"fft3d = dials.algorithms.indexing.basis_vector_search:FFT3D",
"real_space_grid_search = dials.algorithms.indexing.basis_vector_search:RealSpaceGridSearch",
],
"dials.index.lattice_search": [
"low_res_spot_match = dials.algorithms.indexing.lattice_search:LowResSpotMatch",
"pink_indexer = dials.algorithms.indexing.lattice_search:PinkIndexer",
],
"dials.integration.background": [
"Auto = dials.extensions.auto_background_ext:AutoBackgroundExt",
"glm = dials.extensions.glm_background_ext:GLMBackgroundExt",
"gmodel = dials.extensions.gmodel_background_ext:GModelBackgroundExt",
"simple = dials.extensions.simple_background_ext:SimpleBackgroundExt",
"null = dials.extensions.null_background_ext:NullBackgroundExt",
],
"dials.integration.centroid": [
"simple = dials.extensions.simple_centroid_ext:SimpleCentroidExt",
],
"dials.spotfinder.threshold": [
"dispersion = dials.extensions.dispersion_spotfinder_threshold_ext:DispersionSpotFinderThresholdExt",
"dispersion_extended = dials.extensions.dispersion_extended_spotfinder_threshold_ext:DispersionExtendedSpotFinderThresholdExt",
"radial_profile = dials.extensions.radial_profile_spotfinder_threshold_ext:RadialProfileSpotFinderThresholdExt",
],
},
}
build(setup_kwargs)
setuptools.setup(**setup_kwargs)