|  | @@ -60,6 +60,18 @@ _spawn_patch.monkeypatch_spawn()
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  LICENSE = 'Apache License 2.0'
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +CLASSIFIERS = [
 | 
	
		
			
				|  |  | +    'Development Status :: 5 - Production/Stable',
 | 
	
		
			
				|  |  | +    'Programming Language :: Python',
 | 
	
		
			
				|  |  | +    'Programming Language :: Python :: 2',
 | 
	
		
			
				|  |  | +    'Programming Language :: Python :: 2.7',
 | 
	
		
			
				|  |  | +    'Programming Language :: Python :: 3',
 | 
	
		
			
				|  |  | +    'Programming Language :: Python :: 3.4',
 | 
	
		
			
				|  |  | +    'Programming Language :: Python :: 3.5',
 | 
	
		
			
				|  |  | +    'Programming Language :: Python :: 3.6',
 | 
	
		
			
				|  |  | +    'License :: OSI Approved :: Apache Software License',
 | 
	
		
			
				|  |  | +],
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  # Environment variable to determine whether or not the Cython extension should
 | 
	
		
			
				|  |  |  # *use* Cython or use the generated C files. Note that this requires the C files
 | 
	
		
			
				|  |  |  # to have been generated by building first *with* Cython support. Even if this
 | 
	
	
		
			
				|  | @@ -283,6 +295,7 @@ setuptools.setup(
 | 
	
		
			
				|  |  |    author_email='grpc-io@googlegroups.com',
 | 
	
		
			
				|  |  |    url='https://grpc.io',
 | 
	
		
			
				|  |  |    license=LICENSE,
 | 
	
		
			
				|  |  | +  classifiers=CLASSIFIERS,
 | 
	
		
			
				|  |  |    long_description=open(README).read(),
 | 
	
		
			
				|  |  |    ext_modules=CYTHON_EXTENSION_MODULES,
 | 
	
		
			
				|  |  |    packages=list(PACKAGES),
 |