We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caa477e commit 2f8d337Copy full SHA for 2f8d337
graphkit/__init__.py
@@ -1,8 +1,13 @@
1
# Copyright 2016, Yahoo Inc.
2
# Licensed under the terms of the Apache License, Version 2.0. See the LICENSE file associated with the project for terms.
3
+"""Lightweight computation graphs for Python."""
4
5
__author__ = "hnguyen"
6
__version__ = "1.3.0"
7
+__license__ = "Apache-2.0"
8
+__title__ = "graphkit"
9
+__summary__ = __doc__.splitlines()[0]
10
+__uri__ = "https://github.com/yahoo/graphkit"
11
12
from .functional import operation, compose
13
from .modifiers import * # noqa, on purpose to include any new modifiers
0 commit comments