forked from google/pytype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
64 lines (60 loc) · 1.72 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
[metadata]
name = pytype
description = Python type inferencer
version = attr:pytype.__version__.__version__
long_description_content_type = text/markdown
maintainer = Google
maintainer_email = pytype@googlegroups.com
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.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development
[options]
zip_safe = False
python_requires = >=3.7, <3.11
packages =
find:
install_requires =
attrs>=21.4.0
importlab>=0.8
jinja2>=3.1.2
libcst>=0.4.9
networkx<3.2
ninja>=1.10.0.post2
pydot>=1.4.2
tabulate>=0.8.10
toml>=0.10.2
typed_ast>=1.5.0; python_version < '3.8'
typing-extensions>=4.3.0
[options.packages.find]
include =
pytype
pytype.*
pytype_extensions
pytype_extensions.*
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