forked from a2i2/surround
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 855 Bytes
/
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
"""
Python package definition for Surround
"""
import os
from setuptools import setup
# Collect version from repo tag
VERSION = os.getenv('VERSION_TAG')
with open("requirements.txt") as f:
INSTALL_REQUIRES = f.read().split("\n")
setup(name='surround',
version=VERSION,
description='Surround is a framework for serving machine learning pipelines in Python.',
url='http://github.com/dstil/surround',
author='Scott Barnett',
author_email='[email protected]',
include_package_data=True,
packages=['surround', 'templates', 'surround.remote', 'surround.runner', 'surround.runner.web'],
test_suite='surround.tests',
entry_points={
'console_scripts': [
'surround=surround.cli:main',
],
},
zip_safe=False,
install_requires=INSTALL_REQUIRES)