A simple wrapper for kqueue VNODE (for now) functionality to be asyncio compatible.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

26 rader
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. )