A simple wrapper for kqueue VNODE (for now) functionality to be asyncio compatible.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

26 wiersze
563 B

  1. #!/usr/bin/env python
  2. from setuptools import setup
  3. setup(name='aiokq',
  4. version='0.1.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. )