File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 15
15
16
16
"""NDB -- A new datastore API for the Google App Engine Python runtime."""
17
17
18
- __version__ = '1.0.10 '
18
+ __version__ = '1.0.13b1 '
19
19
20
20
__all__ = []
21
21
Original file line number Diff line number Diff line change 14
14
# limitations under the License.
15
15
#
16
16
17
+
17
18
from setuptools import setup
18
19
from setuptools import find_packages
19
20
29
30
setup (
30
31
name = 'ndb' ,
31
32
version = '1.0.13b1' ,
32
- description = 'Google App Engine NDB ' ,
33
- author = 'Patrick Costello ' ,
34
- author_email = 'pcostello@google .com' ,
33
+ description = 'NDB Client Library for Cloud Datastore ' ,
34
+ author = 'Google Cloud Datastore Team ' ,
35
+ author_email = 'gcd-discuss@googlegroups .com' ,
35
36
scripts = [],
36
37
url = 'https://github.com/GoogleCloudPlatform/datastore-ndb-python' ,
37
- packages = find_packages (),
38
+ packages = find_packages (exclude = [ 'demo' ] ),
38
39
license = 'Apache 2.0' ,
39
40
platforms = 'Posix; MacOS X; Windows' ,
40
41
include_package_data = True ,
You can’t perform that action at this time.
0 commit comments