Skip to content

Commit 3de9de1

Browse files
authored
Update setup.py
1 parent eb831e3 commit 3de9de1

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

setup.py

+9-11
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,24 @@
88
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
99
long_description = f.read()
1010

11-
# Arguments marked as "Required" below must be included for upload to PyPI.
12-
# Fields marked as "Optional" may be commented out.
13-
1411
setup(
1512
name='tobiiglassesctrl',
1613
version='2.4.3',
1714
description='A Python controller for Tobii Pro Glasses 2',
15+
long_description=long_description,
16+
long_description_content_type='text/markdown',
1817
url='https://github.com/ddetommaso/TobiiGlassesPyController/',
1918
download_url='https://github.com/ddetommaso/TobiiGlassesPyController/archive/2.4.3.tar.gz',
2019
install_requires=['netifaces', 'opencv-python==4.2.0.32', 'av==8.0.3'],
2120
author='Davide De Tommaso',
2221
author_email='[email protected]',
23-
keywords=['eye-tracker','tobii','glasses', 'tobii pro glasses 2', 'tobii glasses', 'eye tracking'],
22+
keywords=['eye-tracker', 'tobii', 'glasses', 'tobii pro glasses 2', 'tobii glasses', 'eye tracking'],
2423
packages=find_packages(exclude=['examples*']),
25-
classifiers = [
26-
'Programming Language :: Python :: 3.5',
27-
'Programming Language :: Python :: 3.6',
28-
'Programming Language :: Python :: 3.7',
29-
'Programming Language :: Python :: 3.8',
30-
'Programming Language :: Python :: 3.9'
31-
24+
classifiers=[
25+
'Programming Language :: Python :: 3.5',
26+
'Programming Language :: Python :: 3.6',
27+
'Programming Language :: Python :: 3.7',
28+
'Programming Language :: Python :: 3.8',
29+
'Programming Language :: Python :: 3.9'
3230
],
3331
)

0 commit comments

Comments
 (0)