Skip to content

Commit 629cdab

Browse files
committed
setup: Add description & classifiers
1 parent 6e9124f commit 629cdab

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

setup.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,17 +52,24 @@ def build_extensions(self):
5252

5353
setup(
5454
name='uvloop',
55+
description='Fast implementation of asyncio event loop on top of libuv',
5556
version='0.4.5',
5657
packages=['uvloop'],
57-
cmdclass = {'build_ext': libuv_build_ext},
58+
cmdclass={'build_ext': libuv_build_ext},
5859
ext_modules=[
5960
Extension(
6061
"uvloop.loop",
61-
sources = [
62+
sources=[
6263
"uvloop/loop.c",
6364
]
6465
),
6566
],
67+
classifiers=[
68+
'Development Status :: 4 - Beta',
69+
'Programming Language :: Python :: 3.5',
70+
'License :: OSI Approved :: MIT License',
71+
'Intended Audience :: Developers',
72+
],
6673
provides=['uvloop'],
6774
include_package_data=True
6875
)

0 commit comments

Comments
 (0)