Skip to content

Commit 7e706f5

Browse files
committed
travis test
1 parent c297e09 commit 7e706f5

File tree

3 files changed

+24
-7
lines changed

3 files changed

+24
-7
lines changed

.travis.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
1-
language:
2-
- python
1+
language: python
2+
python: 2.7
33

4-
python:
5-
- "2.7"
4+
sudo: required
65

7-
# command to install dependencies
6+
# dependencies
87
install:
9-
- "pip install -r requirements.txt"
8+
# pyside
9+
- sudo apt-get install -y qt4-qmake libqt4-dev
10+
- sudo apt-get install -y python-qt4 python-pyside
1011

11-
# command to run tests
12+
#pip install pyside --find-links wheelhouse/
13+
#pip install PySide --no-index --find-links https://parkin.github.io/python-wheelhouse/;
14+
15+
# run tests
1216
script:
1317
- pytest tests

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
[//]: # (-*- coding: utf-8 -*-)
22

3+
[![Travis](https://img.shields.io/travis/tuxberlin/python-keyctl/master.svg)](https://travis-ci.org/tuxberlin/python-keyctl)
4+
[![PyPI](https://img.shields.io/pypi/v/keyctl.svg)](https://pypi.python.org/pypi/keyctl)
5+
[![PyPI](https://img.shields.io/pypi/pyversions/keyctl.svg)](https://pypi.python.org/pypi/keyctl)
6+
[![license](https://img.shields.io/github/license/tuxberlin/python-keyctl.svg)](https://raw.githubusercontent.com/tuxberlin/python-keyctl/master/LICENSE)
37

48

59
# python-keyctl

setup.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,13 @@
3030
'keyctlgui=keyctl.gui:main',
3131
],
3232
},
33+
classifiers=[
34+
'Development Status :: 4 - Beta',
35+
'Intended Audience :: Developers',
36+
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
37+
'Programming Language :: Python',
38+
'Programming Language :: Python :: 2.7',
39+
'Environment :: X11 Applications :: Qt',
40+
'Topic :: Utilities',
41+
]
3342
)

0 commit comments

Comments
 (0)