forked from ctrl_packages/epics_launcher
37 lines
1014 B
Python
Executable File
37 lines
1014 B
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.6",
|
|
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"},
|
|
package_data={
|
|
"pylauncher": [
|
|
"resources/images/*.png",
|
|
"resources/qss/*.qss",
|
|
"resources/mapping/*.json",
|
|
]
|
|
},
|
|
# platforms=["any"],
|
|
# zip_safe=False,
|
|
install_requires=[
|
|
"pyqt",
|
|
"pyparsing",
|
|
# "future",
|
|
],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"launcher = pylauncher.launcher:main"
|
|
# "launcher-convert = pylauncher.convert.convert:main",
|
|
# "launcher-protect = pylauncher.protect:main",
|
|
]
|
|
},
|
|
)
|