mirror of
https://github.com/powerline/powerline.git
synced 2025-07-25 06:46:33 +02:00
Add setup.py
This commit is contained in:
parent
cd41910fb3
commit
82b52094a3
2
MANIFEST.in
Normal file
2
MANIFEST.in
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
recursive-include powerline *.json
|
||||||
|
exclude powerline/tests/*.xml
|
38
setup.py
Executable file
38
setup.py
Executable file
@ -0,0 +1,38 @@
|
|||||||
|
#!/usr/bin/env python2
|
||||||
|
# -*- 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 = ''
|
||||||
|
|
||||||
|
install_requires = []
|
||||||
|
|
||||||
|
docs_extras = [
|
||||||
|
'Sphinx',
|
||||||
|
'docutils',
|
||||||
|
]
|
||||||
|
|
||||||
|
setup(name='Powerline',
|
||||||
|
version='β',
|
||||||
|
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',
|
||||||
|
keywords='',
|
||||||
|
packages=find_packages(),
|
||||||
|
include_package_data=True,
|
||||||
|
zip_safe=False,
|
||||||
|
test_suite='powerline',
|
||||||
|
install_requires=install_requires,
|
||||||
|
extras_require={
|
||||||
|
'docs': docs_extras,
|
||||||
|
},
|
||||||
|
)
|
Loading…
x
Reference in New Issue
Block a user