-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
67 lines (61 loc) · 1.81 KB
/
setup.py
File metadata and controls
67 lines (61 loc) · 1.81 KB
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
import sys
from setuptools import find_packages, setup
from setuptools.command.test import test as TestCommand
class NoseTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import nose
errcode = nose.main(self.test_args)
sys.exit(errcode)
setup(name='sharedcloud-cli',
version='0.0.5',
description='Command Line Interface (CLI) for Sharedcloud.',
maintainer='Sharedcloud',
maintainer_email='admin@sharedcloud.io',
author='Sharedcloud',
author_email='admin@sharedcloud.io',
url='https://github.com/sharedcloud/sharedcloud-cli',
license='MIT',
long_description=open('README.md').read(),
platforms='any',
keywords=[
'sharedcloud',
'cloud',
'computing',
'development',
'gpu',
'cpu',
'deep-learning',
'machine-learning',
'data-science',
'neural-networks',
'artificial-intelligence',
'ai',
'reinforcement-learning',
'devops',
],
packages=find_packages(),
install_requires=[
'click==6.7',
'requests==2.19.1',
'tabulate==0.8.2',
'timeago==1.0.8',
],
entry_points={
"console_scripts": [
"sharedcloud = sharedcloud_cli.main:cli",
],
},
classifiers=[
'Programming Language :: Python',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
tests_require=['nose'],
cmdclass={'test': NoseTest}
)