Skip to content

Commit

Permalink
adding deploy in appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
fgoudreault committed Jul 19, 2017
1 parent 38f6a40 commit 6109a40
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,16 @@ branches:
only:
- master
- develop
before_deploy:
- python build.py bdist_msi
deploy:
release: $(appveyor_build_version)
description: "Release description"
provider: GitHub
auth_token:
secure: x2ous7RX857j64h4DSkiEBCSU8kUQYCL31UBrPLUSgosixVS/XDXGA6TWr0DLPm9
artifact: auxiclean.zip
draft: true
on:
branch: master
appveyor_repo_tag: true
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ matrix:
os: linux
python: 3.6
after_success:
- pip install coveralls
- coveralls
install:
- python setup.py develop
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,10 @@ def win_pip_install(package, install_list):

# package required
install_packages = ["openpyxl", # to manage excel spreadsheets
"cx_freeze",
]

develop_packages = ["nose", "pep8", "coverage", "coveralls",
"cx_freeze", # to create executable file on windows
]
develop_packages = ["nose", "pep8", "coverage"]
print("Installing auxiclean, the following packages are required:",
install_packages)

Expand Down

0 comments on commit 6109a40

Please sign in to comment.