-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eb831e3
commit 3de9de1
Showing
1 changed file
with
9 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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' | ||
], | ||
) |