mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-06-26 15:49:40 +02:00
Reverting setup.py
This commit is contained in:
parent
b28c4e415e
commit
67f2c56336
2 changed files with 4 additions and 7 deletions
|
|
@ -13,11 +13,6 @@ if NOT "%PAPER%" == "" (
|
||||||
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
|
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
echo "Sphinx details"
|
|
||||||
echo "%SPHINXBUILD%"
|
|
||||||
echo "%ALLSPHINXOPTS%"
|
|
||||||
|
|
||||||
if "%1" == "" goto help
|
if "%1" == "" goto help
|
||||||
|
|
||||||
if "%1" == "help" (
|
if "%1" == "help" (
|
||||||
|
|
|
||||||
6
setup.py
6
setup.py
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
import os
|
import os
|
||||||
from numpy.distutils.core import Extension, setup
|
from numpy.distutils.core import Extension, setup
|
||||||
|
from sphinx.setup_command import BuildDoc
|
||||||
|
|
||||||
# Version number
|
# Version number
|
||||||
version = '0.1.3'
|
version = '0.1.3'
|
||||||
|
|
@ -25,8 +26,9 @@ setup(name = 'GPy',
|
||||||
long_description=read('README.md'),
|
long_description=read('README.md'),
|
||||||
#ext_modules = [Extension(name = 'GPy.kern.lfmUpsilonf2py',
|
#ext_modules = [Extension(name = 'GPy.kern.lfmUpsilonf2py',
|
||||||
# sources = ['GPy/kern/src/lfmUpsilonf2py.f90'])],
|
# sources = ['GPy/kern/src/lfmUpsilonf2py.f90'])],
|
||||||
install_requires=['sympy', 'numpy>=1.6', 'scipy>=0.9', 'matplotlib>=1.1'],
|
install_requires=['sympy', 'numpy>=1.6', 'scipy>=0.9','matplotlib>=1.1'],
|
||||||
setup_requires=['sphinx>=1.1.3'],
|
setup_requires=['sphinx'],
|
||||||
|
cmdclass = {'build_sphinx': BuildDoc},
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Development Status :: 1 - Alpha",
|
"Development Status :: 1 - Alpha",
|
||||||
"Topic :: Machine Learning",
|
"Topic :: Machine Learning",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue