Skip to content

Commit ca8b5ea

Browse files
committed
initial commit
0 parents  commit ca8b5ea

File tree

2 files changed

+96
-0
lines changed

2 files changed

+96
-0
lines changed

.gitignore

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
># Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
5+
# C extensions
6+
*.so
7+
8+
# Distribution / packaging
9+
.Python
10+
env/
11+
pyvenv/
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
*.egg-info/
23+
.installed.cfg
24+
*.egg
25+
26+
# PyInstaller
27+
# Usually these files are written by a python script from a template
28+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
29+
*.manifest
30+
*.spec
31+
32+
# Installer logs
33+
pip-log.txt
34+
pip-delete-this-directory.txt
35+
36+
# Unit test / coverage reports
37+
htmlcov/
38+
.tox/
39+
.coverage
40+
.cache
41+
.pytest_cache
42+
nosetests.xml
43+
coverage.xml
44+
cover
45+
46+
# Translations
47+
*.mo
48+
*.pot
49+
50+
# Django stuff:
51+
*.log
52+
53+
# Sphinx documentation
54+
docs/_build/
55+
56+
# PyBuilder
57+
target/
58+
59+
# PyCharm
60+
.idea
61+
*.iml
62+
# rope
63+
*.swp
64+
.ropeproject
65+
tags
66+
node_modules/
67+
68+
# mypy
69+
.mypy_cache/

README.rst

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
mlserve
2+
=======
3+
.. image:: https://travis-ci.com/jettify/mlserve.svg?branch=master
4+
:target: https://travis-ci.com/jettify/mlserve
5+
.. image:: https://codecov.io/gh/jettify/mlserve/branch/master/graph/badge.svg
6+
:target: https://codecov.io/gh/jettify/mlserve
7+
.. image:: https://api.codeclimate.com/v1/badges/1ff813d5cad2d702cbf1/maintainability
8+
:target: https://codeclimate.com/github/jettify/mlserve/maintainability
9+
:alt: Maintainability
10+
.. image:: https://img.shields.io/pypi/v/mlserve.svg
11+
:target: https://pypi.python.org/pypi/mlserve
12+
13+
**mlserve** is Python 3.6+ module.
14+
15+
16+
Requirements
17+
------------
18+
19+
* Python_ 3.6+
20+
* aiohttp_
21+
22+
23+
.. _PEP492: https://www.python.org/dev/peps/pep-0492/
24+
.. _Python: https://www.python.org
25+
.. _aiohttp: https://github.com/aio-libs/aiohttp
26+
.. _asyncio: http://docs.python.org/3.6/library/asyncio.html
27+
.. _uvloop: https://github.com/MagicStack/uvloop

0 commit comments

Comments
 (0)