forked from polyaxon/polyaxon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
68 lines (61 loc) · 1.92 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
#!/usr/bin/env python
import sys
from setuptools import find_packages, setup
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest
errcode = pytest.main(self.test_args)
sys.exit(errcode)
setup(name='polyaxon',
version='0.1.0',
description='Deep Learning library for TensorFlow for '
'building end to end db and experiments.',
maintainer='Mourad Mourafiq',
maintainer_email='[email protected]',
author='Mourad Mourafiq',
author_email='[email protected]',
url='https://github.com/polyaxon/polyaxon',
license='MIT',
platforms='any',
packages=find_packages(),
keywords=[
'polyaxon',
'tensorFlow',
'deep-learning',
'machine-learning',
'data-science',
'neural-networks',
'artificial-intelligence',
'ai',
'reinforcement-learning'
],
install_requires=[
"celery==4.1.0",
"Django==2.0.3",
"django-cors-headers==2.2.0",
"djangorestframework==3.7.7",
"docker==3.3.0",
"GitPython==2.1.7",
"Jinja2==2.9.6",
"pika==0.11.0",
"psycopg2-binary==2.7.4",
"redis==2.10.6",
"sanic==0.6.0",
"Unipath==1.1",
"uWSGI==2.0.15",
"websockets==3.4",
],
classifiers=[
'Programming Language :: Python',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
tests_require=['pytest'],
cmdclass={'test': PyTest})