Changed requirements for picamera and Python to >= 3.5
This commit is contained in:
14
setup.py
14
setup.py
@@ -111,7 +111,7 @@ setup(
|
|||||||
# 3 - Alpha
|
# 3 - Alpha
|
||||||
# 4 - Beta
|
# 4 - Beta
|
||||||
# 5 - Production/Stable
|
# 5 - Production/Stable
|
||||||
'Development Status :: 3 - Alpha',
|
'Development Status :: 4 - Beta',
|
||||||
|
|
||||||
'Environment :: X11 Applications :: Qt',
|
'Environment :: X11 Applications :: Qt',
|
||||||
|
|
||||||
@@ -158,11 +158,12 @@ setup(
|
|||||||
# For an analysis of "install_requires" vs pip's requirements files see:
|
# For an analysis of "install_requires" vs pip's requirements files see:
|
||||||
# https://packaging.python.org/en/latest/requirements.html
|
# https://packaging.python.org/en/latest/requirements.html
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'opencv-python',
|
'opencv-python',
|
||||||
'Pillow',
|
'Pillow',
|
||||||
'gpiozero',
|
'gpiozero',
|
||||||
'gphoto2',
|
'gphoto2',
|
||||||
'gphoto2-cffi'], # Optional
|
'gphoto2-cffi', # Optional
|
||||||
|
],
|
||||||
|
|
||||||
# List additional groups of dependencies here (e.g. development
|
# List additional groups of dependencies here (e.g. development
|
||||||
# dependencies). Users will be able to install these using the "extras"
|
# dependencies). Users will be able to install these using the "extras"
|
||||||
@@ -174,10 +175,11 @@ setup(
|
|||||||
# projects.
|
# projects.
|
||||||
extras_require={ # Optional
|
extras_require={ # Optional
|
||||||
'dev': ['PyQt5'],
|
'dev': ['PyQt5'],
|
||||||
|
'picamera': ['picamera'],
|
||||||
# 'test': ['coverage'],
|
# 'test': ['coverage'],
|
||||||
},
|
},
|
||||||
|
|
||||||
python_requires='>=3',
|
python_requires='>=3.5',
|
||||||
|
|
||||||
# If there are data files included in your packages that need to be
|
# If there are data files included in your packages that need to be
|
||||||
# installed, specify them here.
|
# installed, specify them here.
|
||||||
@@ -222,5 +224,3 @@ setup(
|
|||||||
'Source': 'https://github.com/reuterbal/photobooth/',
|
'Source': 'https://github.com/reuterbal/photobooth/',
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user