Metadata-Version: 2.4
Name: photo-copier
Version: 1.0.5
Summary: Select an copy your photos
Author-email: n4n5 <its.just.n4n5@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/Its-Just-Nans/photo-copier
Project-URL: Bug Tracker, https://github.com/Its-Just-Nans/photo-copier/issues
Keywords: photo
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file


# photo-copier

Transfer your pictures easily !
Work only for __`Windows`__

You need the `PIL` module :

If you have `pip` in your path :

```sh
pip install pillow
```

or

```sh
PATH_TO_PIP install pillow
```

## Create an executable

With the executable, the start of the program is slower :(

If you want to create an executable, you need to have `PyInstaller` installed

If you have `pip` in your path :

```sh
pip install pyinstaller
```

or

```sh
PATH_TO_PIP install pyinstaller
```

Then you need to execute `pyinstaller` :

You need to be in the folder of the program

If you have `pyinstaller` in your path

```sh
pyinstaller .\main.spec
```

or

```sh
py -m PyInstaller .\main.spec
```
