A simple wrapper for kqueue VNODE (for now) functionality to be asyncio compatible.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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