Files
epics_launcher/setup.py
T
2020-03-11 07:41:14 +01:00

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.3',
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
)