-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.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 = statue
url = https://github.com/saroad2/statue
project_urls =
Documentation = https://saroad2.github.io/statue/
Tracker = https://github.com/saroad2/statue/issues
Source = https://github.com/saroad2/statue
author = Sagi Shadur
author_email = [email protected]
maintainer = Sagi Shadur
maintainer_email = [email protected]
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3 :: Only
Topic :: Software Development :: Quality Assurance
Topic :: Software Development :: Testing
Topic :: Utilities
license = Apache License
license_file = LICENSE
description = All your static code analysis tools, in one place
long_description = file: docs/README.md
long_description_content_type = text/markdown; charset=UTF-8
keywords =
formatting
static
code
analysis
platforms = any
[options]
zip_safe = False
packages = find:
python_requires = >=3.7
include_package_data = True
package_dir =
= src
install_requires =
importlib-resources>=5.7.1;python_version<'3.9'
tomli >= 2.0.1
tomli-w >= 1.0.0
click >= 8.1.3
click-params >= 0.3.0
tqdm >= 4.64.0
GitPython >= 3.1.27
types-mock >= 4.0.13
types-toml >= 0.10.7
types-setuptools >= 57.4.14
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
statue = statue.__main__:statue_cli
[tool:pytest]
asyncio_mode = strict
testpaths =
tests