forked from polyaxon/hypertune
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
68 lines (59 loc) · 1.75 KB
/
Copy pathsetup.py
File metadata and controls
68 lines (59 loc) · 1.75 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
68
#!/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='polystores',
version='0.1.5',
description='Polystores is an abstraction and a collection of clients '
'to interact with cloud storages.',
long_description=read_readme(),
maintainer='Mourad Mourafiq',
maintainer_email='mourad@polyaxon.com',
author='Mourad Mourafiq',
author_email='mourad@polyaxon.com',
url='https://github.com/polyaxon/polystores',
license='MIT',
platforms='any',
packages=find_packages(),
keywords=[
'polyaxon',
'aws',
's3',
'microsoft',
'azure',
'google cloud storage',
'gcs',
'machine-learning',
'data-science',
'artificial-intelligence',
'ai',
'reinforcement-learning',
'kubernetes',
'docker'
],
install_requires=[
"rhea>=0.4.2",
],
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})