We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e9124f commit 629cdabCopy full SHA for 629cdab
setup.py
@@ -52,17 +52,24 @@ def build_extensions(self):
52
53
setup(
54
name='uvloop',
55
+ description='Fast implementation of asyncio event loop on top of libuv',
56
version='0.4.5',
57
packages=['uvloop'],
- cmdclass = {'build_ext': libuv_build_ext},
58
+ cmdclass={'build_ext': libuv_build_ext},
59
ext_modules=[
60
Extension(
61
"uvloop.loop",
- sources = [
62
+ sources=[
63
"uvloop/loop.c",
64
]
65
),
66
],
67
+ classifiers=[
68
+ 'Development Status :: 4 - Beta',
69
+ 'Programming Language :: Python :: 3.5',
70
+ 'License :: OSI Approved :: MIT License',
71
+ 'Intended Audience :: Developers',
72
+ ],
73
provides=['uvloop'],
74
include_package_data=True
75
)
0 commit comments