-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (25 loc) · 917 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
# setup.py
#
# Copyright 2017 Socos LLC
#
import os
from setuptools import setup
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='datastore-to-gcs',
packages=['datastore_to_gcs'],
version='0.3',
license='Apache License 2.0',
description='Transfer data from Google Cloud Datastore to Google Cloud Storage.',
long_description=(read('README.rst')),
author='Brandon Istenes',
author_email='bistenes@socos.me',
url='https://github.com/SocosLLC/datastore-to-gcs',
download_url='https://github.com/SocosLLC/datastore-to-gcs/archive/0.3.tar.gz',
keywords=['gae', 'gcp', 'gcs', 'gcd', 'datastore', 'cloudstorage', 'transfer', 'dump'],
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License']
)