mirror of
https://github.com/naruxde/revpicommander.git
synced 2025-11-08 16:43:53 +01:00
Move version number from revpicommander.py to __init__.py
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||||
|
||||
#define MyAppName "RevPi Commander"
|
||||
#define MyAppVersion "0.9.10rc2"
|
||||
#define MyAppVersion "0.9.10rc3"
|
||||
#define MyAppPublisher "Sven Sager"
|
||||
#define MyAppURL "https://revpimodio.org/"
|
||||
#define MyAppICO "data\revpicommander.ico"
|
||||
|
||||
4
setup.py
4
setup.py
@@ -8,7 +8,7 @@ from setuptools import find_namespace_packages, setup
|
||||
|
||||
setup(
|
||||
name="revpicommander",
|
||||
version="0.9.10rc2",
|
||||
version="0.9.10rc3",
|
||||
|
||||
packages=find_namespace_packages("src"),
|
||||
package_dir={'': 'src'},
|
||||
@@ -35,7 +35,7 @@ setup(
|
||||
maintainer="Sven Sager",
|
||||
maintainer_email="akira@revpimodio.org",
|
||||
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"
|
||||
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"
|
||||
|
||||
@@ -3,3 +3,4 @@
|
||||
__author__ = "Sven Sager"
|
||||
__copyright__ = "Copyright (C) 2023 Sven Sager"
|
||||
__license__ = "GPLv3"
|
||||
__version__ = "0.9.10rc3"
|
||||
|
||||
@@ -5,13 +5,13 @@
|
||||
__author__ = "Sven Sager"
|
||||
__copyright__ = "Copyright (C) 2018 Sven Sager"
|
||||
__license__ = "GPLv3"
|
||||
__version__ = "0.9.10rc2"
|
||||
|
||||
import webbrowser
|
||||
from os.path import dirname, join
|
||||
|
||||
from PyQt5 import QtCore, QtGui, QtWidgets
|
||||
|
||||
from . import __version__
|
||||
from . import helper
|
||||
from . import proginit as pi
|
||||
from . import revpilogfile
|
||||
|
||||
Reference in New Issue
Block a user