This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import setuptools | |
if __name__ == "__main__": | |
setuptools.setup( | |
name='RTP_python_template', | |
version="0.3.0", | |
description='A starting template for Python programs', | |
author='Doaa Altarawy', | |
author_email='[email protected]', | |
url="https://github.com/doaa-altarawy/RTP_python_template", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: python | |
# turn off sudo | |
sudo: false | |
# python versions to be tested | |
matrix: | |
include: | |
- python: 2.7 | |
- python: 3.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For more configuration details: | |
# https://docs.codecov.io/docs/codecov-yaml | |
# Check if this file is valid by running in bash: | |
# curl -X POST --data-binary @.codecov.yml https://codecov.io/validate | |
# Coverage configuration | |
# ---------------------- | |
coverage: | |
status: |