Files
epics_launcher/setup.py
T
2025-01-23 12:56:05 +01:00

37 lines
1.0 KiB
Python
Executable File

import os
from setuptools import setup, find_packages
# here = os.path.abspath(os.path.dirname(__file__))
# README = open(os.path.join(here, "Readme.md")).read()
setup(
name="pylauncher",
version="2.0.7",
description="Standard PSI tool for accessing GUIs",
author="Paul Scherrer Institute",
url="https://github.com/paulscherrerinstitute/pylauncher",
# packages=["pylauncher", "pylauncher.convert"],
# package_dir={"pylauncher": "src"},
packages=find_packages(),
package_data={
"pylauncher": [
"resources/images/*.png",
"resources/qss/*.qss",
"resources/mapping/*.json",
]
},
# platforms=["any"],
# zip_safe=False,
install_requires=[
"pyqt",
"pyparsing",
],
entry_points={
"console_scripts": [
"caslauncher=pylauncher.launcher:main_logic",
# "launcher-convert = pylauncher.convert.convert:main",
# "launcher-protect = pylauncher.protect:main",
]
},
)