forked from lablup/backend.ai-kernel-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
104 lines (99 loc) · 2.67 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
from setuptools import setup, find_packages
from pathlib import Path
# from ai.backend.kernel.version import VERSION
requires = [
'async_timeout>=1.1',
'aiozmq>=0.7',
'uvloop>=0.8',
'namedlist',
'janus',
'msgpack-python',
]
build_requires = [
'wheel',
'twine',
]
test_requires = [
'pytest>=3.1',
'pytest-asyncio',
'pytest-cov',
'pytest-mock',
'asynctest',
'flake8',
'codecov',
]
dev_requires = build_requires + test_requires + [
'pytest-sugar',
]
ci_requires = []
setup(
name='backend.ai-kernel-runner',
version='1.0.7a0',
description='User code executors for Backend.AI kernels',
long_description=Path('README.rst').read_text(),
url='https://github.com/lablup/backend.ai-kernel-runner',
author='Lablup Inc.',
author_email='[email protected]',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Environment :: No Input/Output (Daemon)',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
],
packages=[
'ai.backend.kernel',
'ai.backend.kernel.python',
'ai.backend.kernel.python.display',
'ai.backend.kernel.python.drawing',
'ai.backend.kernel.python.matplotlib',
'ai.backend.kernel.c',
'ai.backend.kernel.cpp',
'ai.backend.kernel.golang',
'ai.backend.kernel.rust',
'ai.backend.kernel.java',
'ai.backend.kernel.haskell',
'ai.backend.kernel.julia',
'ai.backend.kernel.lua',
'ai.backend.kernel.nodejs',
'ai.backend.kernel.octave',
'ai.backend.kernel.php',
'ai.backend.kernel.r',
'ai.backend.kernel.r_server_ms',
'ai.backend.kernel.git',
],
python_requires='>=3.6',
install_requires=requires,
extras_require={
'build': build_requires,
'test': test_requires,
'dev': dev_requires,
'ci': ci_requires,
# kernel-specific requirements
'python': [
'six', 'IPython', 'pandas', 'numpy',
'matplotlib', 'msgpack-python'],
'c': [],
'cpp': [],
'git': [],
'golang': [],
'rust': [],
'java': [],
'nodejs': [],
'haskell': [],
'php': [],
'lua': [],
'julia': [],
'r': [],
'r_server_ms': [
'aiohttp', 'yarl',
],
'octave': [],
},
)