greg-ynx / NexusDownloadFlow

Auto-downloader for Nexus Mods.
33 stars 7 forks source link

[0032] [ndf-script] Restructure project #16

Closed greg-ynx closed 20 hours ago

greg-ynx commented 7 months ago

Total redesign of the project structure.

. ├── _global/ │ ├── constants/ │ │ └── extensions.py │ └── functions/ │ └── template.py ├── assets/ │ └── templates/ │ ├── default/ │ │ ├── template1.png │ │ ├── template2.png │ │ └── template3.png │ └── input ├── configuration/ │ ├── ascii/ │ │ ├── ascii.py │ │ └── ascii.txt │ ├── definitions.py │ └── logger.py ├── logs ├── scripts/ │ ├── cli/ │ │ ├── arguments.py │ │ └── handler.py │ └── commands/ │ ├── clear_logs/ │ │ └── clear_logs.py │ ├── help/ │ │ └── help.py │ ├── issue/ │ │ ├── issue.py │ │ └── issue_template.txt │ ├── logfile/ │ │ └── logfile.py │ ├── path_of/ │ │ └── path_of.py │ ├── run/ │ │ └── autodownloader.py │ ├── templates/ │ │ └── templates.py │ └── version/ │ └── version.py ├── target ├── test/ │ └── demo/ │ └── template_matching_algorithms ├── .gitignore ├── build.bat ├── build.spec ├── main.py ├── pyproject.toml ├── README.md └── requirement.txt

greg-ynx commented 20 hours ago

There are no need to restructure the project for now, might come with the 3.0.0 version.