File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
BSD 2-Clause License
2
2
3
- Copyright (c) 2019, imageio
3
+ Copyright (c) 2019-2025 , imageio
4
4
All rights reserved.
5
5
6
6
Redistribution and use in source and binary forms, with or without
Original file line number Diff line number Diff line change 1
1
import platform
2
2
import struct
3
3
4
- __version__ = "0.5.0 "
4
+ __version__ = "0.5.1 "
5
5
6
6
7
7
def get_platform ():
Original file line number Diff line number Diff line change 26
26
if "sdist" in sys .argv :
27
27
target_dir = os .path .abspath (os .path .join (this_dir , "imageio_ffmpeg" , "binaries" ))
28
28
for fname in os .listdir (target_dir ):
29
- if fname != "README.md" :
29
+ if fname not in [ "README.md" , "__init__.py" ] :
30
30
os .remove (os .path .join (target_dir , fname ))
31
31
32
32
58
58
provides = ["imageio_ffmpeg" ],
59
59
python_requires = ">=3.5" ,
60
60
setup_requires = [],
61
- install_requires = ["setuptools" ],
61
+ install_requires = [],
62
62
packages = ["imageio_ffmpeg" , "imageio_ffmpeg.binaries" ],
63
63
package_data = {"imageio_ffmpeg.binaries" : ["*.*" ]},
64
64
include_package_data = True ,
You can’t perform that action at this time.
0 commit comments