Commit 7199b2e9 by Peter Weidenbach

dependency link fixed and travis support added

parent 7ca9a515
language: python
python:
- "3.5"
- "3.6"
# command to install dependencies
install:
- "python setup.py -q install"
- "pip install pytest-pep8"
# command to run tests
script: pytest
\ No newline at end of file
...@@ -7,10 +7,10 @@ setup( ...@@ -7,10 +7,10 @@ setup(
version=VERSION, version=VERSION,
packages=find_packages(), packages=find_packages(),
install_requires=[ install_requires=[
'common_helper_files' 'common_helper_files >= 0.2'
], ],
dependency_links=[ dependency_links=[
'git+https://github.com/fkie-cad/common_helper_files.git#common_helper_files' 'https://github.com/fkie-cad/common_helper_files/tarball/master#egg=common_helper_files-0.2'
], ],
description="Helper functions for handling password lists and files.", description="Helper functions for handling password lists and files.",
author="Fraunhofer FKIE", author="Fraunhofer FKIE",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment