-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
83 lines (76 loc) · 2.16 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
72
73
74
75
76
77
78
79
80
81
82
[metadata]
name = stmdency
version = attr: stmdency.__version__
url = https://github.com/zhongjiajie/stmdency
description = A library extracting dependencies between Python statements.
long_description = file: README.md
long_description_content_type = text/markdown
author = Jay Chung
author_email = [email protected]
license = Apache License 2.0
license_files =
file: LICENSE
keywords =
all
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 3 - Alpha
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Environment :: Console
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: User Interfaces
Topic :: Utilities
project_urls =
Source = https://github.com/zhongjiajie/stmdency
Issue Tracker = https://github.com/zhongjiajie/stmdency/issues
Documentation = https://stmdency.readthedocs.io
Changelog = https://github.com/zhongjiajie/stmdency/releases
[options]
python_requires = >=3.8
include_package_data = True
zip_safe = true
platforms = any
package_dir =
=src
packages =
find:
install_requires =
libcst
# PyYaml
[options.packages.find]
where=src
[options.package_data]
stmdency =
rules/**/*.yaml
[options.extras_require]
dev =
# style
black>=22.8
ruff>=0.1
# test
pytest>=6.2
pytest-cov>=3.0
# docs
sphinx>=4.3
sphinx_rtd_theme>=1.0
sphinx-copybutton>=0.4.0
sphinx-argparse>=0.3.2
[coverage:run]
command_line = -m pytest
[coverage:report]
# Mark no cover for typing.TYPE_CHECKING, see details https://github.com/nedbat/coveragepy/issues/831
exclude_lines =
pragma: no cover
if TYPE_CHECKING:
# Don’t report files that are 100% covered
skip_covered = True
show_missing = True
precision = 2