-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1.41 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
import os
import sys
from setuptools import setup
from setuptools import find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
install_requires = [
'pandas>=0.18',
'requests>=2',
'google-api-python-client>=1.5',
'ipyparallel>=5.1',
]
setup(
name="dsclient",
version="0.0.1",
description="Simple Python client library for interactive data science with Google Cloud Platform",
long_description=README,
author="Yoichi NAGAI",
url="http://github.com/orfeon/gcp-python-dsclient",
install_requires=install_requires,
packages=find_packages(),
package_data={},
license="Apache 2.0",
keywords=["google api client","data science","pandas"],
classifiers=[
'Development Status :: 1 - Planning',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Framework :: IPython',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)