mirror of
https://github.com/naruxde/revpicommander.git
synced 2025-11-08 16:43:53 +01:00
This will make it possible to build pip packages. Add a make file to compile UI files and build mac and win applications.
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""Setupscript fuer RevPiPyLoad."""
|
|
__author__ = "Sven Sager"
|
|
__copyright__ = "Copyright (C) 2018 Sven Sager"
|
|
__license__ = "LGPLv3"
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
setup(
|
|
version="0.9.10rc1",
|
|
# python_requires="~=3.4",
|
|
install_requires=["PyQt5", "revpimodio2", "zeroconf"],
|
|
|
|
entry_points={
|
|
'console_scripts': [
|
|
'revpicommander = revpicommander.revpicommander:main',
|
|
],
|
|
'gui_scripts': [
|
|
'RevPiCommander = revpicommander.revpicommander:main',
|
|
],
|
|
},
|
|
|
|
# Additional meta-data
|
|
name="revpicommander",
|
|
author="Sven Sager",
|
|
author_email="akira@narux.de",
|
|
maintainer="Sven Sager",
|
|
maintainer_email="akira@revpimodio.org",
|
|
url="https://revpimodio.org/revpipyplc/",
|
|
description="GUI for Revolution Pi to upload programs and do IO-Checks",
|
|
long_description=""
|
|
"The RevPiCommander is a GUI tool to manage your revolution Pi over the\n"
|
|
"network. You can search for RevPis in your network, manage the settings\n"
|
|
"of RevPiPyLoad and do IO checks on your local machine. Developing your\n"
|
|
"control program is very easy with the developer, upload and debug it\n"
|
|
"over the network.",
|
|
classifiers=[
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Operating System :: POSIX :: Linux",
|
|
],
|
|
license="GPLv3",
|
|
)
|