-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 812 Bytes
/
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
from setuptools import setup
with open('README.md', encoding='utf8') as f:
long_description = f.read()
setup(
name='powerline-travis-ci',
description='A Powerline segment for fetching and showing the latest travis-ci build state',
long_description=long_description,
long_description_content_type='text/markdown',
version='0.1.post1',
keywords='powerline travis-ci travis ci build state status segment terminal cli',
license='MIT',
author='DeepSpace2',
author_email='[email protected]',
url='https://github.com/DeepSpace2/powerline-travis-ci',
packages=['powerline_travis_ci'],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Terminals'
]
)