-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.54 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (35 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup
from os import listdir
from os.path import isfile, join
imagedir = 'salt/gui/images/'
setup(name='salt-ml',
version='0.1dev',
description='Toolbox to suggest a machine learning technique and options best suited to a particular data set.',
long_description=open('README.rst').read(),
url='http://github.com/rogerberm/salt',
author='Roger Bermudez-Chacon, Kevin Smith, Peter Horvath',
author_email='beroger@student.ethz.ch',
license='[pending to define]',
packages=['salt', 'salt.data', 'salt.evaluate', 'salt.gui', 'salt.IO', 'salt.jobs',
'salt.learn', 'salt.optimize', 'salt.options', 'salt.parameters', 'salt.sample',
'salt.suggest', 'salt.utils'],
data_files=[(imagedir, [imagedir + filename for filename in listdir(imagedir) if isfile(join(imagedir, filename))]), ],
platforms='any',
zip_safe=False,
entry_points="""
[console_scripts]
salt = salt.main:main
""",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License ::Other/Proprietary License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Topic :: Scientific/Engineering',
'Topic :: Software Development', ]
)