forked from polyaxon/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
81 lines (72 loc) · 2.37 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
#!/usr/bin/env python
import sys
from setuptools import find_packages, setup
from setuptools.command.test import test as TestCommand
def read_readme():
with open('README.md') as f:
return f.read()
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-cli',
version='0.6.1',
description='Command Line Interface (CLI) for Polyaxon.',
long_description=read_readme(),
long_description_content_type="text/markdown",
maintainer='Mourad Mourafiq',
maintainer_email='[email protected]',
author='Mourad Mourafiq',
author_email='[email protected]',
url='https://github.com/polyaxon/polyaxon-cli',
license='MIT',
platforms='any',
packages=find_packages(),
keywords=[
'polyaxon',
'tensorFlow',
'deep-learning',
'machine-learning',
'data-science',
'neural-networks',
'artificial-intelligence',
'ai',
'reinforcement-learning',
'kubernetes',
],
install_requires=[
"click==7.0",
"click-completion==0.5.1",
"pathlib==1.0.1",
"polyaxon-client==0.6.1",
"polyaxon-deploy==0.6.1",
"polyaxon-dockerizer==0.1.0",
"raven==6.7.0",
"tabulate==0.8.2",
],
entry_points={
"console_scripts": [
"polyaxon = polyaxon_cli.main:cli",
],
},
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
tests_require=['pytest'],
cmdclass={'test': PyTest})