forked from cnpem/sophys-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 713 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 713 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='sophys-gui',
version='0.17.1',
author='SWC - LNLS',
description='Control GUI for the Bluesky queue.',
install_requires=[
'QtPy==2.3.1',
'QtAwesome>1.2.3',
'bluesky-queueserver-api==0.0.10',
'bluesky-widgets',
'typesentry==0.2.7',
'numpy>=2.0.0',
'assonant[naming-standards]',
'sophys_live_view',
'PyYAML',
],
include_package_data=True,
packages=find_packages(),
package_data={"": ["*.css", "*.yml", "*json"]},
entry_points={
'gui_scripts': [
'sophys-gui = sophys_gui.__main__:main',
]
}
)