-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (54 loc) · 1.98 KB
/
setup.py
File metadata and controls
56 lines (54 loc) · 1.98 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
from __future__ import absolute_import, division, print_function
import setuptools
setuptools.setup(
name="intxr",
description="Interceptor: live analysis of serial X-ray data",
long_description="",
long_description_content_type="text/x-rst",
author="Artem Y. Lyubimov",
author_email="lyubimov@stanford.edu",
version="0.33.5",
url="https://github.com/ssrl-px/interceptor",
license="BSD",
install_requires=[],
package_dir={"": "src"},
packages=["interceptor"],
package_data={
'gui':['*.png'],
},
entry_points={
"console_scripts": [
"intxr.connect = interceptor.command_line.connector_run:entry_point",
"intxr.connect_mpi = "
"interceptor.command_line.connector_run_mpi:entry_point",
"intxr.strategy = interceptor.command_line.strategy_process:entry_point",
"intxr.score = interceptor.command_line.image_score:entry_point",
"intxr.fill = interceptor.command_line.strategy_fill_in:entry_point",
],
"gui_scripts": [
"intxr.gui = interceptor.command_line.ui_run:entry_point",
],
"dxtbx.format": [
"FormatEigerStream:FormatMultiImage,Format = "
"interceptor.format.FormatEigerStream:FormatEigerStream",
"FormatPilatusStream:FormatCBFMini = "
"interceptor.format.FormatPilatusStream:FormatPilatusStream"
],
"libtbx.dispatcher.script": [
"intxr.gui = intxr.gui",
"intxr.connect = intxr.connect",
"intxr.connect_mpi = intxr.connect_mpi",
"intxr.strategy = intxr.strategy",
"intxr.score = intxr.score",
"intxr.fill = intxr.fill",
],
},
scripts=[],
tests_require=[],
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Operating System :: POSIX :: Linux",
],
)