powerline/setup.py
Kim Silkebækken b99e9cb074 Revert "Make 'powerline' a namespace package"
This reverts commit 57bd0af2721bf5ad18b512f347d6a08468ce0767.
2013-02-04 13:04:17 +01:00

37 lines
735 B
Python
Executable File

#!/usr/bin/env python
# -*- 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',
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',
],
keywords='',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite='powerline',
install_requires=[],
extras_require={
'docs': [
'Sphinx',
],
},
)