-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (34 loc) · 1.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup
try:
with open('README.md') as fh:
LONG_DESC = fh.read()
except (IOError, OSError):
LONG_DESC = ''
setup(
name="xontrib-powerline-binding",
version='0.3.2',
url='https://github.com/dyuri/xontrib-powerline-binding',
license='MIT',
author='Gyuri Horák',
author_email='[email protected]',
description='Powerline binding for xonsh',
install_requires=[
'powerline-status',
],
long_description=LONG_DESC,
long_description_content_type='text/markdown',
packages=['xontrib', 'powerline_xonsh'],
package_dir={'xontrib': 'xontrib'},
package_data={'xontrib': ['*.xsh']},
platforms='any',
data_files=[("", ["LICENSE.txt"])],
classifiers=[
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Desktop Environment',
'Topic :: System :: Shells',
'Topic :: System :: System Shells',
]
)