-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #245 from AkshatBajaj/feature/split-surround
FEATURE: Split surround into cli and library [CON-583]
- Loading branch information
Showing
127 changed files
with
334 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include VERSION | ||
include surround/*.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<p align="center"> | ||
<img src="../docs/source/temp_logo_hq.png" width="500"> | ||
</p> | ||
|
||
# Surround Library | ||
|
||
Surround Python library is the core part of Surround as it provides a flexible way of running a ML pipeline in a variety of situations whether that be from a queue, a http endpoint or from a file system | ||
|
||
For more information about Surround library, see [Surround Library](https://surround.readthedocs.io/en/latest/about/#a-python-library) | ||
|
||
## Installation | ||
|
||
### Prerequisites | ||
- [Python](https://www.python.org/) 3+ (Tested on 3.6.5) | ||
|
||
Use package manager [pip](https://pip.pypa.io/en/stable/) to install the latest (stable) version: | ||
``` | ||
$ pip3 install surround | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.0.14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[DISABLE] | ||
|
||
disable = missing-docstring, | ||
invalid-name, | ||
too-few-public-methods, | ||
broad-except, | ||
no-self-use, | ||
inconsistent-return-statements, | ||
line-too-long, | ||
duplicate-code, | ||
abstract-method, | ||
attribute-defined-outside-init, | ||
relative-beyond-top-level, | ||
unused-argument, | ||
too-many-arguments |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pylint==2.4.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pyaml==17.12.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
""" | ||
Python package definition for Surround | ||
""" | ||
from setuptools import setup | ||
|
||
# Collect version from VERSION file | ||
with open('VERSION') as version_file: | ||
VERSION = version_file.read().strip() | ||
|
||
with open("requirements.txt") as f: | ||
INSTALL_REQUIRES = f.read().split("\n") | ||
|
||
with open("requirements-test.txt") as f: | ||
TESTS_REQUIRES = f.read().split("\n") | ||
|
||
setup(name='surround', | ||
version=VERSION, | ||
description='Surround is a framework for serving machine learning pipelines in Python.', | ||
url='https://github.com/a2i2/surround', | ||
author='Scott Barnett', | ||
author_email='[email protected]', | ||
include_package_data=True, | ||
packages=[ | ||
'surround' | ||
], | ||
test_suite='surround.tests', | ||
license="BSD-3-Clause License", | ||
zip_safe=False, | ||
install_requires=INSTALL_REQUIRES, | ||
tests_require=TESTS_REQUIRES) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.