A simple wrapper for kqueue VNODE (for now) functionality to be asyncio compatible.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

26 Zeilen
563 B

  1. #!/usr/bin/env python
  2. from setuptools import setup
  3. setup(name='aiokq',
  4. version='1.0.0',
  5. description='Asyncio wrapper for kqueue.',
  6. author='John-Mark Gurney',
  7. author_email='jmg@funkthat.com',
  8. classifiers=[
  9. 'Development Status :: 3 - Alpha',
  10. 'License :: OSI Approved :: BSD License',
  11. ],
  12. url='https://www.funkthat.com/gitea/jmg/aiokq',
  13. packages=[ 'aiokq', ],
  14. install_requires=[
  15. ],
  16. extras_require = {
  17. 'dev': [ 'coverage' ],
  18. },
  19. entry_points={
  20. 'console_scripts': [
  21. ]
  22. }
  23. )