mirror of
				https://github.com/powerline/powerline.git
				synced 2025-11-04 13:34:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			870 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			870 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python
 | 
						|
# vim:fileencoding=utf-8:noet
 | 
						|
 | 
						|
import os
 | 
						|
import sys
 | 
						|
 | 
						|
from setuptools import setup, find_packages
 | 
						|
 | 
						|
here = os.path.abspath(os.path.dirname(__file__))
 | 
						|
try:
 | 
						|
	README = open(os.path.join(here, 'README.rst')).read()
 | 
						|
except IOError:
 | 
						|
	README = ''
 | 
						|
 | 
						|
old_python = sys.version_info < (2, 7)
 | 
						|
 | 
						|
setup(
 | 
						|
	name='Powerline',
 | 
						|
	version='beta',
 | 
						|
	description='The ultimate statusline/prompt utility.',
 | 
						|
	long_description=README,
 | 
						|
	classifiers=[],
 | 
						|
	author='Kim Silkebækken',
 | 
						|
	author_email='kim.silkebaekken+vim@gmail.com',
 | 
						|
	url='https://github.com/Lokaltog/powerline',
 | 
						|
	scripts=[
 | 
						|
		'scripts/powerline',
 | 
						|
		'scripts/powerline-lint',
 | 
						|
	],
 | 
						|
	keywords='',
 | 
						|
	packages=find_packages(exclude=('tests', 'tests.*')),
 | 
						|
	include_package_data=True,
 | 
						|
	zip_safe=False,
 | 
						|
	install_requires=[],
 | 
						|
	extras_require={
 | 
						|
		'docs': [
 | 
						|
			'Sphinx',
 | 
						|
		],
 | 
						|
	},
 | 
						|
	test_suite='tests' if not old_python else None,
 | 
						|
)
 |