-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (69 loc) · 2.27 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (69 loc) · 2.27 KB
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
[build-system]
requires = ['setuptools>=64', 'cython>=0.29', 'numpy']
build-backend = 'setuptools.build_meta'
[project]
name = 'dragonfly-spi'
dynamic = ['version']
description = 'Suite of XFEL single particle imaging tools'
readme = 'README.md'
requires-python = '>=3.8'
license = 'GPL-3.0-or-later'
license-files = ['LICENSE']
authors = [
{name = 'Kartik Ayyer'},
{name = 'N. Duane Loh'},
]
keywords = ['single-particle-imaging', 'xfel', 'emc', 'diffractive-imaging', 'reconstruction']
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: C',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Physics',
]
# Core dependencies
dependencies = [
'numpy',
'h5py',
'scipy',
'scikit-learn',
'matplotlib',
'pyqt5',
]
# Optional dependencies
[project.optional-dependencies]
dev = [
'sphinx',
'sphinx_rtd_theme',
'pylint',
]
cuphaser = ['cuphaser']
# Cluster/build dependencies (install separately on clusters with MPI modules)
# mpi4py should be installed after loading the MPI environment module
[project.urls]
Homepage = 'https://github.com/duaneloh/Dragonfly'
Documentation = 'https://dragonfly-spi.readthedocs.io'
Repository = 'https://github.com/duaneloh/Dragonfly'
[tool.setuptools.dynamic]
version = {attr = 'dragonfly._version.__version__'}
[tool.setuptools]
packages = [
'dragonfly',
'dragonfly.utils',
'dragonfly.utils.py_src',
]
[project.scripts]
'dragonfly.init' = 'dragonfly.utils.init_new_recon:main'
'dragonfly.emc' = 'dragonfly.recon:main'
'dragonfly.autoplot' = 'dragonfly.utils.autoplot:main'
'dragonfly.frameviewer' = 'dragonfly.utils.frameviewer:main'
'dragonfly.utils.make_densities' = 'dragonfly.utils.make_densities:main'
'dragonfly.utils.make_intensities' = 'dragonfly.utils.make_intensities:main'
'dragonfly.utils.make_detector' = 'dragonfly.utils.make_detector:main'
'dragonfly.utils.make_data' = 'dragonfly.utils.make_data:main'
'dragonfly.utils.sim_setup' = 'dragonfly.utils.sim_setup:main'
#'dragonfly.utils.compare' = 'dragonfly.utils.compare:main'