 b0a2c0dd86
			
		
	
	b0a2c0dd86
	
	
	
		
			
			Some changes: - Fix import style ```python from create import * from .create import * ``` - Fix error: traceback.format_exc() - import six to handle unicode difference between py2/3 - Add py32 to tox - Replaced io.BytesIO with bytearray
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from setuptools import setup, find_packages
 | |
| 
 | |
| import falcon.version
 | |
| 
 | |
| 
 | |
| setup(
 | |
|     name='falcon',
 | |
|     version=falcon.version,
 | |
|     description='A fast micro-framework for building cloud APIs.',
 | |
|     long_description=None,
 | |
|     classifiers=[
 | |
|         'Development Status :: 3 - Alpha',
 | |
|         'Environment :: Web Environment',
 | |
|         'Natural Language :: English',
 | |
|         'Intended Audience :: Developers',
 | |
|         'Intended Audience :: System Administrators',
 | |
|         'License :: OSI Approved :: Apache Software License',
 | |
|         'Operating System :: MacOS :: MacOS X',
 | |
|         'Operating System :: Microsoft :: Windows',
 | |
|         'Operating System :: POSIX',
 | |
|         'Topic :: Internet :: WWW/HTTP :: WSGI',
 | |
|         'Programming Language :: Python',
 | |
|         'Programming Language :: Python :: 2.7',
 | |
|         'Topic :: Software Development :: Libraries :: Application Frameworks'
 | |
|     ],
 | |
|     keywords='wsgi web api framework rest http cloud',
 | |
|     author='Kurt Griffiths',
 | |
|     author_email='mail@kgriffs.com',
 | |
|     url='https://github.com/racker/falcon',
 | |
|     license='Apache 2.0',
 | |
|     packages=find_packages(exclude=['bench', 'tests']),
 | |
|     include_package_data=True,
 | |
|     zip_safe=False,
 | |
|     install_requires=['six'],
 | |
| 
 | |
|     test_suite='nose.collector',
 | |
|     tests_require='nose'
 | |
| )
 |