-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsetup.py
58 lines (51 loc) · 1.88 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import setuptools
import setuptools.extension
#setuptools.dist.Distribution(dict(setup_requires='Cython'))
## `setup_requires` is parsed and acted upon immediately; from here on out
## the yoursharedsetuppackage is installed and importable.
## Thanks to Martijn Pieters http://stackoverflow.com/a/12061891/351084
#from Cython.Distutils import build_ext
#setuptools.setup(name='vowpal_porpoise',
#description='Lightweight vowpal wabbit wrapper',
#version='0.2',
#author='Austin Waters',
#author_email='[email protected]',
#packages=setuptools.find_packages(),
#install_requires=[],
#ext_modules=[setuptools.extension.Extension(
#"vw_c",
#["src/vw.pyx", "src/vw_c.cpp"],
#language="c++",
#include_dirs=["/mnt/vowpal_wabbit/"],
## library_dirs=['/mnt/vowpal_wabbit/vowpalwabbit'],
#libraries=['allreduce', 'vw', 'boost_program_options-mt'],
#)
#],
#cmdclass={'build_ext': build_ext}
#)
from setuptools import setup, find_packages
setup(
name = 'vowpal_porpoise',
version = '0.3',
author = 'Joseph Reisinger',
author_email = '[email protected]',
description='Lightweight vowpal wabbit wrapper',
license = 'BSD',
keywords = 'machine learning regression vowpal_wabbit',
url = 'https://github.com/josephreisinger/vowpal_porpoise',
packages = find_packages(),
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
install_requires = [ # dependencies
'numpy',
'scikit-learn',
],
tests_require = [ # test dependencies
]
)