Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ddetommaso authored Jun 4, 2024
1 parent eb831e3 commit 3de9de1
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,24 @@
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

# Arguments marked as "Required" below must be included for upload to PyPI.
# Fields marked as "Optional" may be commented out.

setup(
name='tobiiglassesctrl',
version='2.4.3',
description='A Python controller for Tobii Pro Glasses 2',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ddetommaso/TobiiGlassesPyController/',
download_url='https://github.com/ddetommaso/TobiiGlassesPyController/archive/2.4.3.tar.gz',
install_requires=['netifaces', 'opencv-python==4.2.0.32', 'av==8.0.3'],
author='Davide De Tommaso',
author_email='[email protected]',
keywords=['eye-tracker','tobii','glasses', 'tobii pro glasses 2', 'tobii glasses', 'eye tracking'],
keywords=['eye-tracker', 'tobii', 'glasses', 'tobii pro glasses 2', 'tobii glasses', 'eye tracking'],
packages=find_packages(exclude=['examples*']),
classifiers = [
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'

classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
)

0 comments on commit 3de9de1

Please sign in to comment.