-
Notifications
You must be signed in to change notification settings - Fork 16
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
Showing
2 changed files
with
11 additions
and
5 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 |
---|---|---|
|
@@ -11,6 +11,9 @@ | |
|
||
__version__ = '1.2.0' | ||
|
||
with open('README.md') as f: | ||
readme = f.read() | ||
|
||
|
||
class get_pybind_include(object): | ||
"""Helper class to determine the pybind11 include path | ||
|
@@ -85,10 +88,10 @@ def build_extensions(self): | |
author='Diederick C. Niehorster', | ||
author_email='[email protected]', | ||
url='https://github.com/dcnieho/Titta', | ||
description='Interface for streaming and receiving Tobii eye tracker data using LSL', | ||
description='Interface for streaming and receiving Tobii eye tracker data using Lab Streaming Layer', | ||
keywords="Tobii PsychoPy Eye-tracking streaming remote LSL", | ||
long_description='Interface for streaming and receiving Tobii eye tracker data using Lab Streaming Layer', | ||
long_description_content_type = 'text/plain', | ||
long_description=readme, | ||
long_description_content_type = 'text/markdown', | ||
ext_modules=ext_modules, | ||
python_requires=">=3.8", | ||
setup_requires=['pybind11>=2.10.1'], # this fixes problem if c++23 std::forward_like is available that i ran into | ||
|
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