1Metadata-Version: 2.1
2Name: absl-py
3Version: 0.7.1
4Summary: Abseil Python Common Libraries, see https://github.com/abseil/abseil-py.
5Home-page: https://github.com/abseil/abseil-py
6Author: The Abseil Authors
7License: Apache 2.0
8Description: # Abseil Python Common Libraries
9
10        This repository is a collection of Python library code for building Python
11        applications. The code is collected from Google's own Python code base, and has
12        been extensively tested and used in production.
13
14        ## Features
15
16        * Simple application startup
17        * Distributed commandline flags system
18        * Custom logging module with additional features
19        * Testing utilities
20
21        ## Getting Started
22
23        ### Installation
24
25        To install the package, simply run:
26
27        ```bash
28        pip install absl-py
29        ```
30
31        Or install from source:
32
33        ```bash
34        python setup.py install
35        ```
36
37        ### Running Tests
38
39        To run Abseil tests, you can clone the git repo and run
40        [bazel](https://bazel.build/):
41
42        ```bash
43        git clone https://github.com/abseil/abseil-py.git
44        cd abseil-py
45        bazel test absl/...
46        ```
47
48        ### Example Code
49
50        Please refer to [smoke_tests/sample_app.py](smoke_tests/sample_app.py) as an
51        example to get started.
52
53        ## Documentation
54
55        Full documentation is forthcoming on https://abseil.io. For now, please refer
56        to the in-code Python docstrings.
57
58        ## Future Releases
59
60        The current repository includes an initial set of libraries for early adoption.
61        More components and interoperability with Abseil C++ Common Libraries
62        will come in future releases.
63
64        ## License
65
66        The Abseil Python library is licensed under the terms of the Apache
67        license. See [LICENSE](LICENSE) for more information.
68
69Platform: UNKNOWN
70Classifier: Programming Language :: Python
71Classifier: Programming Language :: Python :: 2
72Classifier: Programming Language :: Python :: 2.7
73Classifier: Programming Language :: Python :: 3
74Classifier: Programming Language :: Python :: 3.4
75Classifier: Programming Language :: Python :: 3.5
76Classifier: Programming Language :: Python :: 3.6
77Classifier: Intended Audience :: Developers
78Classifier: Topic :: Software Development :: Libraries :: Python Modules
79Classifier: License :: OSI Approved :: Apache Software License
80Classifier: Operating System :: OS Independent
81Description-Content-Type: text/markdown
82