forked from ctrl_packages/epics_launcher
31 lines
1.1 KiB
Python
Executable File
31 lines
1.1 KiB
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='1.0.00',
|
|
description="Standard PSI tool for accessing GUIs",
|
|
long_description=README,
|
|
author='PSI',
|
|
url='https://github.psi.ch/projects/COS/repos/pylauncher/browse',
|
|
licence='GPLv3+',
|
|
keywords='launcher, caqtdm, medm, PSI',
|
|
classifiers=[
|
|
# Get strings from
|
|
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
'Development Status :: 3 - Alpha',
|
|
'Environment :: Console',
|
|
'Intended Audience :: Developers',
|
|
'Programming Language :: Python :: 2',
|
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)'
|
|
],
|
|
packages=['pylauncher', 'pylauncher.convert'],
|
|
package_dir={'pylauncher': 'pylauncher'},
|
|
package_data={'pylauncher': ['res/images/*.png', 'res/qss/*.qss']},
|
|
platforms=["any"],
|
|
)
|