forked from ctrl_packages/epics_launcher
38 lines
1.1 KiB
Python
Executable File
38 lines
1.1 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": [
|
|
# "launcher=pylauncher.launcher",
|
|
# # "launcher-convert = pylauncher.convert.convert:main",
|
|
# # "launcher-protect = pylauncher.protect:main",
|
|
# ]
|
|
# },
|
|
entry_points={"console_scripts": ["bob=bob.bob:bob"]},
|
|
)
|