diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..83ef925
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,19 @@
+version: 1.0.{build}
+image: Visual Studio 2015
+configuration: Release
+build_script:
+- cmd: |
+    set LIBGIT2=%APPVEYOR_BUILD_FOLDER%\build\libgit2
+    git clone --depth=1 -b maint/v0.24 https://github.com/libgit2/libgit2.git libgit2
+    mkdir build
+    
+    pushd build
+    cmake -DSTDCALL=OFF -DBUILD_CLAR=OFF -DCMAKE_INSTALL_PREFIX=%LIBGIT2% ../libgit2 -G"Visual Studio 11 Win64"
+    cmake --build . --config Release --target install
+    popd
+    
+    C:\Python35-x64\Scripts\pip.exe install wheel
+    C:\Python35-x64\python.exe setup.py bdist_wheel 
+  
+artifacts:
+- path: build\*