-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (34 loc) · 1.19 KB
/
setup.py
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
#!/usr/bin/env python
# Copyright (C) 2015 Tadej Stajner <[email protected]>
# License: 3-clause BSD
from setuptools import setup
setup(name='autokit',
version='0.1',
description='autokit - machine learning for busy people',
author='Tadej Stajner',
author_email='[email protected]',
url='https://github.com/tadejs/autokit',
packages=['autokit'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
],
platforms=['Linux', 'OS-X', 'Windows'],
dependency_links = ['https://github.com/hyperopt/hyperopt-sklearn/tarball/master#egg=hyperopt-sklearn-0.0.1'],
install_requires = [
'numpy',
'scipy',
'scikit-learn',
'networkx',
'hyperopt'],
)