-
Notifications
You must be signed in to change notification settings - Fork 279
/
setup.cfg
67 lines (63 loc) · 1.73 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
[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.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development
[options]
zip_safe = False
python_requires = >=3.10
packages =
find:
install_requires =
attrs>=21.4.0
importlab>=0.8
immutabledict>=4.1.0
jinja2>=3.1.2
libcst>=1.0.1
msgspec>=0.18.6
networkx>=2.8
ninja>=1.10.0.post2
pycnite>=2024.07.31
pydot>=1.4.2
tabulate>=0.8.10
toml>=0.10.2
typing-extensions>=4.3.0
[options.packages.find]
include =
pytype
pytype.*
pytype_extensions
pytype_extensions.*
third_party
third_party.*
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.main:main
pyxref = pytype.tools.xref.main:main