Files
epics_launcher/setup.py
T

21 lines
687 B
Python
Executable File

#!/usr/bin/env python
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.2',
description="Standard PSI tool for accessing GUIs",
long_description=README,
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
)