Changed requirements for picamera and Python to >= 3.5

This commit is contained in:
Balthasar Reuter
2018-06-16 23:33:50 +02:00
parent ab2387bfe9
commit 53eb348813

View File

@@ -111,7 +111,7 @@ setup(
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
'Environment :: X11 Applications :: Qt',
@@ -162,7 +162,8 @@ setup(
'Pillow',
'gpiozero',
'gphoto2',
'gphoto2-cffi'], # Optional
'gphoto2-cffi', # Optional
],
# List additional groups of dependencies here (e.g. development
# dependencies). Users will be able to install these using the "extras"
@@ -174,10 +175,11 @@ setup(
# projects.
extras_require={ # Optional
'dev': ['PyQt5'],
'picamera': ['picamera'],
# 'test': ['coverage'],
},
python_requires='>=3',
python_requires='>=3.5',
# If there are data files included in your packages that need to be
# installed, specify them here.
@@ -222,5 +224,3 @@ setup(
'Source': 'https://github.com/reuterbal/photobooth/',
},
)