updated package MANIFEST

This commit is contained in:
Marc Claesen
2015-07-19 11:42:57 +02:00
parent cdad5efa1d
commit 0732bf977b
2 changed files with 9 additions and 2 deletions
+1
View File
@@ -5,3 +5,4 @@ include logo/logo.png
recursive-include docs *.rst *.png *.py
recursive-include wrappers *.m *.R
recursive-include bin *.py
recursive-include notebooks *.ipynb *.py *.png *.sh
+8 -2
View File
@@ -1,4 +1,5 @@
from distutils.core import setup
import setuptools
setup(
name = 'Optunity',
@@ -19,11 +20,16 @@ setup(
'License :: OSI Approved :: BSD License',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis'
'Topic :: Scientific/Engineering :: Information Analysis',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
],
platforms = ['any'],
keywords = ['machine learning', 'parameter tuning',
'hyperparameter optimization', 'meta-optimization',
'direct search', 'model selection'
'direct search', 'model selection', 'particle swarm optimization'
],
)