diff --git a/appveyor.yml b/appveyor.yml
index 8e9f6c5e..592a4347 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -42,7 +42,7 @@ test_script:
# the interpreter you're using - Appveyor does not do anything special
# to put the Python evrsion you want to use on PATH.
#- "build.cmd %PYTHON%\\python.exe setup.py test"
- - "coverage run travis_tests.py"
+ #- "coverage run travis_tests.py"
after_test:
# This step builds your wheels.
@@ -63,16 +63,15 @@ on_success:
- "echo password:%pip_upload% >> %USERPROFILE%\\.pypirc"
- type %USERPROFILE%\\.pypirc
- ls dist\
- - twine upload -r test dist\*.whl
+ - twine upload -r test dist\*
-
-deploy:
- release: GPy-v$(__version__)
- description: 'GPy windows install'
- provider: GitHub
- artifact: dist\*.exe # upload wininst to GitHub
- draft: false
- prerelease: false
- on:
- branch: deploy # release from deploy branch only
- #appveyor_repo_tag: true # deploy on tag push only
\ No newline at end of file
+#deploy:
+# release: GPy-v$(__version__)
+# description: 'GPy windows install'
+# provider: GitHub
+# artifact: dist\*.exe # upload wininst to GitHub
+# draft: false
+# prerelease: false
+# on:
+# branch: deploy # release from deploy branch only
+# #appveyor_repo_tag: true # deploy on tag push only
\ No newline at end of file
diff --git a/setup.cfg b/setup.cfg
index fa2eb911..4c59444e 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -5,9 +5,6 @@ commit = True
[bumpversion:file:GPy/__version__.py]
-[bdist_wheel]
-universal = 1
-
[upload_docs]
upload-dir = doc/build/html
diff --git a/setup.py b/setup.py
index 18e0c7d8..c8d20add 100644
--- a/setup.py
+++ b/setup.py
@@ -59,14 +59,7 @@ def read_to_rst(fname):
desc = """
-- `GPy homepage `_
-- `Tutorial notebooks `_
-- `User mailing-list `_
-- `Developer documentation `_
-- `Travis-CI unit-tests `_
-- `License `_
-
-For full description and installation instructions please refer to the github page.
+Please refer to the github homepage for detailed instructions on installation and usage.
"""
@@ -116,6 +109,7 @@ setup(name = 'GPy',
author = read_to_rst('AUTHORS.txt'),
author_email = "gpy.authors@gmail.com",
description = ("The Gaussian Process Toolbox"),
+ long_description = desc,
license = "BSD 3-clause",
keywords = "machine-learning gaussian-processes kernels",
url = "http://sheffieldml.github.com/GPy/",
@@ -154,8 +148,7 @@ setup(name = 'GPy',
include_package_data = True,
py_modules = ['GPy.__init__'],
test_suite = 'GPy.testing',
- long_description=desc,
- install_requires=['numpy>=1.7', 'scipy>=0.16', 'six', 'paramz>=0.5.2'],
+ install_requires = ['numpy>=1.7', 'scipy>=0.16', 'six', 'paramz>=0.5.2'],
extras_require = {'docs':['sphinx'],
'optional':['mpi4py',
'ipython>=4.0.0',