Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/setuptools/_vendor/packaging/__about__.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

10 statements  

1# This file is dual licensed under the terms of the Apache License, Version 

2# 2.0, and the BSD License. See the LICENSE file in the root of this repository 

3# for complete details. 

4from __future__ import absolute_import, division, print_function 

5 

6__all__ = [ 

7 "__title__", 

8 "__summary__", 

9 "__uri__", 

10 "__version__", 

11 "__author__", 

12 "__email__", 

13 "__license__", 

14 "__copyright__", 

15] 

16 

17__title__ = "packaging" 

18__summary__ = "Core utilities for Python packages" 

19__uri__ = "https://github.com/pypa/packaging" 

20 

21__version__ = "19.2" 

22 

23__author__ = "Donald Stufft and individual contributors" 

24__email__ = "donald@stufft.io" 

25 

26__license__ = "BSD or Apache License, Version 2.0" 

27__copyright__ = "Copyright 2014-2019 %s" % __author__