-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1c40561
commit 58ad5e3
Showing
14 changed files
with
123 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,4 @@ | |
*.json | ||
.DS_Store | ||
.idea/ | ||
__pycache__/ | ||
move_config.txt | ||
__pycache__/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2022 Ephraim Siegfried | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# file-mover | ||
|
||
A file manager that moves files based on file properties and specified criteria. | ||
|
||
## Description | ||
|
||
An in-depth paragraph about your project and overview of use. | ||
|
||
## Getting Started | ||
|
||
### Dependencies | ||
|
||
* Describe any prerequisites, libraries, OS version, etc., needed before installing program. | ||
* ex. Windows 10 | ||
|
||
### Installing | ||
|
||
* How/where to download your program | ||
* Any modifications needed to be made to files/folders | ||
|
||
### Executing program | ||
|
||
* How to run the program | ||
* Step-by-step bullets | ||
``` | ||
code blocks for commands | ||
``` | ||
|
||
## Help | ||
|
||
Any advise for common problems or issues. | ||
``` | ||
command to run if program contains helper info | ||
``` | ||
|
||
## Authors | ||
|
||
Contributors names and contact info | ||
|
||
ex. Dominique Pizzie | ||
ex. [@DomPizzie](https://twitter.com/dompizzie) | ||
|
||
## Version History | ||
|
||
* 0.2 | ||
* Various bug fixes and optimizations | ||
* See [commit change]() or See [release history]() | ||
* 0.1 | ||
* Initial Release | ||
|
||
## License | ||
|
||
This project is licensed under the [NAME HERE] License - see the LICENSE.md file for details | ||
|
||
## Acknowledgments | ||
|
||
Inspiration, code snippets, etc. | ||
* [awesome-readme](https://github.com/matiassingers/awesome-readme) | ||
* [PurpleBooth](https://gist.github.com/PurpleBooth/109311bb0361f32d87a2) | ||
* [dbader](https://github.com/dbader/readme-template) | ||
* [zenorocha](https://gist.github.com/zenorocha/4526327) | ||
* [fvcproductions](https://gist.github.com/fvcproductions/1bfc2d4aecb01a834b46) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
from setuptools import setup, find_packages | ||
import pathlib | ||
|
||
here = pathlib.Path(__file__).parent.resolve() | ||
long_description = (here, "README.md").read_text(encoding="utf-8") | ||
|
||
setup( | ||
name='file-mover', | ||
version='0.0.1', | ||
description='Move files based on file properties and given criteria', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author='Ephraim Siegfried', | ||
author_email='[email protected]', | ||
package_dir={'': 'src'}, | ||
python_requires=">=3.6.0", | ||
packages=find_packages(exclude=["tests"]), | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Topic :: Desktop Environment :: File Managers" | ||
], | ||
entrypoints={"console_scripts":["file-mover = src.__main__:main"]}, | ||
install_requires=["notifypy>=1.0.3.0", "osxmetadata>=1.2.2"] | ||
) |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters