forked from googledatalab/pydatalab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
111 lines (106 loc) · 3.24 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# Copyright 2015 Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
# in compliance with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distributed under the License
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
# or implied. See the License for the specific language governing permissions and limitations under
# the License.
# To publish to PyPi use: python setup.py bdist_wheel upload -r pypi
import datetime
import sys
from setuptools import setup
if sys.version_info[0] == 2:
import platform
import pip
minor = datetime.datetime.now().strftime("%y%m%d%H%M")
version = '0.1.' + minor
setup(
name='datalab',
version=version,
namespace_packages=['datalab'],
packages=[
'datalab.bigquery',
'datalab.bigquery.commands',
'datalab.context',
'datalab.context.commands',
'datalab.data',
'datalab.data.commands',
'datalab.kernel',
'datalab.mlalpha',
'datalab.mlalpha.commands',
'datalab.notebook',
'datalab.stackdriver',
'datalab.stackdriver.commands',
'datalab.stackdriver.monitoring',
'datalab.storage',
'datalab.storage.commands',
'datalab.utils',
'datalab.utils.commands'
],
description='Google Cloud Datalab',
author='Google',
author_email='[email protected]',
url='https://github.com/googledatalab/datalab',
download_url='https://github.com/googledatalab/datalab/tarball/0.1',
keywords=[
'Google',
'GCP',
'GCS',
'bigquery'
],
license="Apache Software License",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
],
long_description="""\
Support package for Google Cloud Datalab. This provides cell magics and Python APIs
for accessing Google's Cloud Platform services such as Google BigQuery.
""",
install_requires=[
'future==0.16.0',
'futures==3.0.5',
'google-cloud==0.19.0',
'google-api-python-client==1.5.1',
'seaborn==0.7.0',
'plotly==1.12.5',
'httplib2==0.9.2',
'oauth2client==2.2.0',
'psutil==4.3.0',
'pandas>=0.17.1',
'pandas-profiling>=1.0.0a2',
'python-dateutil==2.5.0',
'pytz>=2015.4',
'pyyaml==3.11',
'requests==2.9.1',
'ipykernel==4.4.1',
],
package_data={
'datalab.notebook': [
'static/bigquery.css',
'static/bigquery.js',
'static/charting.css',
'static/charting.js',
'static/job.css',
'static/job.js',
'static/element.js',
'static/style.js',
'static/visualization.js',
'static/codemirror/mode/sql.js',
'static/parcoords.js',
'static/extern/d3.parcoords.js',
'static/extern/d3.parcoords.css',
'static/extern/sylvester.js',
]
}
)