forked from google/pytype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
71 lines (66 loc) · 1.71 KB
/
setup.cfg
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[metadata]
name = pytype
description = Python type inferencer
version = attr:pytype.__version__.__version__
long_description_content_type = text/markdown
maintainer = Google
maintainer_email = [email protected]
url = https://google.github.io/pytype
project_urls =
Code = https://github.com/google/pytype
Issue Tracker = https://github.com/google/pytype/issues
Documentation = https://google.github.io/pytype
license = Apache 2.0
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development
[options]
zip_safe = False
python_requires = >=3.6, <3.9
packages =
find:
install_requires =
attrs
importlab>=0.5.1
ninja>=1.10.0.post2
pyyaml>=3.11
six
typed_ast
[options.packages.find]
include =
pytype
pytype.*
exclude =
pytype.test_data
pytype.tests
pytype.typeshed.tests
[options.entry_points]
console_scripts =
annotate-ast = pytype.tools.annotate_ast.main:main
merge-pyi = pytype.tools.merge_pyi.main:main
pytd = pytype.pytd.main:main
pytype = pytype.tools.analyze_project.main:main
pytype-single = pytype.single:main
pyxref = pytype.tools.xref.main:main
[pytype]
inputs =
pytype/compat.py
pytype/debug.py
pytype/metrics.py
pytype/utils.py
pytype/pyc/
pytype/pyi/
pytype/pytd/
pytype/typegraph/
exclude =
**/*_test.py
**/test_*.py
**/*_test_*.py