powerline/setup.py

37 lines
735 B
Python
Raw Normal View History

#!/usr/bin/env python
2012-12-13 15:43:38 +01:00
# -*- coding: utf-8 -*-
import os
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 = ''
setup(name='Powerline',
2012-12-17 15:24:42 +01:00
version='beta',
2012-12-13 15:43:38 +01:00
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',
2013-01-17 09:25:56 +01:00
scripts=[
'scripts/powerline',
2013-01-17 09:25:56 +01:00
],
2012-12-13 15:43:38 +01:00
keywords='',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite='powerline',
install_requires=[],
2012-12-13 15:43:38 +01:00
extras_require={
'docs': [
'Sphinx',
],
},
)