-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (37 loc) · 838 Bytes
/
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
from distutils.core import setup
setup(
name = 'aiplatgo',
packages = ['aiplatgo'],
package_dir = {
'aiplatgo': 'aiplatgo'
},
version = '0.0.0.19',
description = 'CLI wrapper for `gcloud ai-platform`',
author = 'Brookie Guzder-Williams',
author_email = 'brook.williams@gmail.com',
url = 'https://github.com/brookisme/aiplatgo',
download_url = 'https://github.com/brookisme/aiplatgo/tarball/0.1',
keywords = ['python','tensorflow','gcloud','ai-platform','CLI'],
include_package_data=False,
package_data={
'aiplatgo': ['config/*.yaml']
},
data_files=[
(
'config',[]
)
],
install_requires=[
'click',
'pandas',
'pyyaml',
'mproc',
'gcs_helpers>=0.0.0.22'
],
classifiers = [],
entry_points={
'console_scripts': [
'aiplatgo=aiplatgo.cli:cli'
]
}
)