|
8 | 8 | with open(path.join(here, 'README.md'), encoding='utf-8') as f:
|
9 | 9 | long_description = f.read()
|
10 | 10 |
|
11 |
| -# Arguments marked as "Required" below must be included for upload to PyPI. |
12 |
| -# Fields marked as "Optional" may be commented out. |
13 |
| - |
14 | 11 | setup(
|
15 | 12 | name='tobiiglassesctrl',
|
16 | 13 | version='2.4.3',
|
17 | 14 | description='A Python controller for Tobii Pro Glasses 2',
|
| 15 | + long_description=long_description, |
| 16 | + long_description_content_type='text/markdown', |
18 | 17 | url='https://github.com/ddetommaso/TobiiGlassesPyController/',
|
19 | 18 | download_url='https://github.com/ddetommaso/TobiiGlassesPyController/archive/2.4.3.tar.gz',
|
20 | 19 | install_requires=['netifaces', 'opencv-python==4.2.0.32', 'av==8.0.3'],
|
21 | 20 | author='Davide De Tommaso',
|
22 | 21 |
|
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'], |
24 | 23 | 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' |
32 | 30 | ],
|
33 | 31 | )
|
0 commit comments