forked from DiamondLightSource/python-relion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
81 lines (75 loc) · 2.61 KB
/
setup.cfg
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
[metadata]
name = relion
version = 0.9.9
description = Relion Python API
long_description = file: README.rst
author = Diamond Light Source - Scientific Software et al.
author_email = [email protected]
license = GPLv2
license_file = LICENSE
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
keywords = relion
project-urls =
Documentation = https://python-relion.readthedocs.io/
GitHub = https://github.com/DiamondLightSource/python-relion
Bug-Tracker = https://github.com/DiamondLightSource/python-relion/issues
[options]
include_package_data = True
install_requires =
gemmi
ispyb
matplotlib
mrcfile
numpy
pandas
pillow
plotly
packages = find:
package_dir =
=src
python_requires = >=3.7
zip_safe = False
[options.entry_points]
console_scripts =
relipy.job = relion.cli.current_job:run
relipy.show = relion.cli.pipeline_viewer:run
relipy.run_pipeline = relion.cli.run_pipeline:run
relipy.print_options = relion.cli.print_default_options:run
external_job_mask_soft_edge = relion.cryolo_relion_it.mask_soft_edge_external_job:main
external_job_select_and_split = relion.cryolo_relion_it.select_and_split_external_job:main
external_job_reconstruct_halves = relion.cryolo_relion_it.reconstruct_halves_external_job:main
external_job_fsc_fitting = relion.cryolo_relion_it.fsc_fitting_external_job:main
libtbx.precommit =
relion = relion
workflows.services =
RelionStopService = relion.zocalo.service:RelionStopService
zocalo.wrappers =
relion = relion.zocalo.wrapper:RelionWrapper
zocalo.services.images.plugins =
mrc_to_jpeg = relion.zocalo.images_service_plugin:mrc_to_jpeg
picked_particles = relion.zocalo.images_service_plugin:picked_particles
[options.packages.find]
where = src
[flake8]
# Black disagrees with flake8 on a few points. Ignore those.
ignore = E203, E266, E501, W503
# E203 whitespace before ':'
# E266 too many leading '#' for block comment
# E501 line too long
# W503 line break before binary operator
max-line-length = 88
select =
E401,E711,E712,E713,E714,E721,E722,E901,
F401,F402,F403,F405,F541,F631,F632,F633,F811,F812,F821,F822,F841,F901,
W191,W291,W292,W293,W602,W603,W604,W605,W606,
# flake8-comprehensions, https://github.com/adamchainz/flake8-comprehensions
C4,