File tree Expand file tree Collapse file tree 1 file changed +7
-15
lines changed Expand file tree Collapse file tree 1 file changed +7
-15
lines changed Original file line number Diff line number Diff line change 1
1
'''
2
- Author: tansen
3
- Date: 2024-02-15 17:13:46
4
- LastEditors:
5
- LastEditTime: 2024-02-15 21:58:09
6
- '''
7
- #!/usr/bin/env python3
8
- # -*- coding: utf-8 -*-
9
- '''
10
2
Description: 配置文件
11
3
usage:
12
- from pyapp .config.config import Config
4
+ from src_py .config.config import Config
13
5
print(Config.rootDir)
14
6
'''
15
7
16
8
import os
9
+ import sys
17
10
import getpass
18
11
import platform
19
- import sys
20
12
21
13
22
14
class Config :
@@ -25,13 +17,13 @@ class Config:
25
17
##
26
18
# 程序基础配置信息
27
19
##
28
- appName = 'pywebview-toolkit ' # 应用名称
29
- appNameEN = 'pywebview-toolkit ' # 应用名称-英文(用于生成缓存文件夹,必须是英文)
20
+ appName = 'pywebview-vue3-template ' # 应用名称
21
+ appNameEN = 'pywebview-vue3-template ' # 应用名称-英文(用于生成缓存文件夹,必须是英文)
30
22
appVersion = "V1.0.0" # 应用版本号
31
23
appDeveloper = "tansen" # 应用开发者
32
- appBlogs = "https://github.com/tansen87" # 个人博客
33
- appPackage = 'pywebview-toolkit ' # 应用包名,用于在本地电脑生成 pywebview-toolkit.ppx 唯一文件夹
34
- appUpdateUrl = 'https://github.com/tansen87' # 获取程序更新信息 https://api.github.com/repos/pangao1990/ppx/releases/latest
24
+ appBlogs = "https://github.com/tansen87" # github
25
+ appPackage = 'pywebview-vue3-template ' # 应用包名,用于在本地电脑生成 pywebview-toolkit.ppx 唯一文件夹
26
+ appUpdateUrl = 'https://github.com/tansen87'
35
27
appISSID = '56CD5B56-61AB-8E1A-DB2D-3311562E5350' # Inno Setup 打包唯一编号。在执行 pnpm run init 之前,请设置为空,程序会自动生成唯一编号,生成后请勿修改!!!
36
28
37
29
##
You can’t perform that action at this time.
0 commit comments