├── .editorconfig ├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ └── codeStyleConfig.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── pyuac.iml └── vcs.xml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dev-requirements.txt ├── pyproject.toml ├── pytest.ini ├── pyuac ├── __init__.py ├── __version__.py ├── admin.py └── main_decorator.py ├── setup.cfg ├── setup.py └── tests ├── example_usage.py ├── test_decorator.py └── test_main.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/pyuac.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/.idea/pyuac.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/README.md -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/pytest.ini -------------------------------------------------------------------------------- /pyuac/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/pyuac/__init__.py -------------------------------------------------------------------------------- /pyuac/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/pyuac/__version__.py -------------------------------------------------------------------------------- /pyuac/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/pyuac/admin.py -------------------------------------------------------------------------------- /pyuac/main_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/pyuac/main_decorator.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | 4 | [metadata] 5 | license_file = LICENSE 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/setup.py -------------------------------------------------------------------------------- /tests/example_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/tests/example_usage.py -------------------------------------------------------------------------------- /tests/test_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/tests/test_decorator.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Preston-Landers/pyuac/HEAD/tests/test_main.py --------------------------------------------------------------------------------