-
Notifications
You must be signed in to change notification settings - Fork 680
Expand file tree
/
Copy pathrun.py
More file actions
executable file
·21 lines (18 loc) · 850 Bytes
/
run.py
File metadata and controls
executable file
·21 lines (18 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
# -*- coding:utf-8 -*-
# Nuitka Project Configuration
# nuitka-project: --mode=onefile
# nuitka-project: --output-filename=ddns
# nuitka-project: --output-dir=dist
# nuitka-project: --product-name=DDNS
# nuitka-project: --product-version=0.0.0
# nuitka-project: --onefile-tempdir-spec="{TEMP}/{PRODUCT}_{VERSION}"
# nuitka-project: --no-deployment-flag=self-execution
# nuitka-project: --company-name="NewFuture"
# nuitka-project: --copyright=https://ddns.newfuture.cc
# nuitka-project: --assume-yes-for-downloads
# nuitka-project: --python-flag=no_site,no_asserts,no_docstrings,no_annotations,isolated,static_hashes
# nuitka-project: --nofollow-import-to=tkinter,unittest,pydoc,doctest,distutils,setuptools,lib2to3,test,idlelib,lzma,bz2,csv
# nuitka-project: --noinclude-dlls=liblzma.*
from ddns.__main__ import main
main()