forked from Netflix/metaflow-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 994 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
29
30
31
32
from setuptools import setup, find_packages
setup(
name = 'metadata_service',
version = '2.0.4',
license='Apache License 2.0',
description = 'Metadata Service: backend service for Metaflow',
author = 'Machine Learning Infrastructure Team at Netflix',
author_email = 'help@metaflow.org',
url = 'https://github.com/Netflix/metaflow-service',
keywords = ['metaflow', 'machinelearning', 'ml'],
py_modules=['metadata_service'],
packages=find_packages(),
entry_points='''
[console_scripts]
metadata_service=services.metadata_service.server:main
''',
install_requires=[
'aiohttp',
'aiohttp_swagger',
'psycopg2',
'aiopg',
'boto3',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.7',
],
)