forked from prashanthellina/vwserver
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 772 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 772 Bytes
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
from setuptools import setup, find_packages
setup(
name="vwserver",
version="0.1.2",
description="Vowpal Wabbit Server",
keywords="vwserver",
author="Prashanth Ellina",
author_email="Use the github issues",
url="https://github.com/prashanthellina/vwserver",
license="MIT License",
install_requires=[
"websocket-client",
"decorator",
"gevent",
"daemonize",
"psutil",
"funcserver",
],
dependency_links=[
"http://github.com/deep-compute/funcserver/tarball/master#egg=funcserver"
],
package_dir={"vwserver": "vwserver"},
packages=find_packages("."),
include_package_data=True,
entry_points={"console_scripts": ["vwserver = vwserver:vwserver_command"]},
)