forked from ctrl_packages/epics_launcher
36 lines
954 B
Python
Executable File
36 lines
954 B
Python
Executable File
from setuptools import setup, find_packages
|
|
|
|
package = "pylauncher"
|
|
version = "2.0.7"
|
|
|
|
setup(
|
|
name=package,
|
|
version=version,
|
|
description="Standard PSI tool for accessing GUIs",
|
|
url="https://github.com/paulscherrerinstitute/pylauncher",
|
|
# packages=["pylauncher", "pylauncher.convert"],
|
|
# package_dir={"pylauncher": "src"},
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"pyqt",
|
|
"pyparsing",
|
|
],
|
|
package_data={
|
|
"pylauncher": [
|
|
"resources/images/*.png",
|
|
"resources/qss/*.qss",
|
|
"resources/mapping/*.json",
|
|
]
|
|
},
|
|
# platforms=["any"],
|
|
# zip_safe=False,
|
|
entry_points={
|
|
"console_scripts": [
|
|
"launcher=pylauncher.launcher:main",
|
|
"blabla=pylauncher.testme:blabla",
|
|
# "launcher-convert = pylauncher.convert.convert:main",
|
|
# "launcher-protect = pylauncher.protect:main",
|
|
]
|
|
},
|
|
)
|