forked from sscpac/statick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
76 lines (70 loc) · 1.7 KB
/
setup.py
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
"""Setup."""
from setuptools import setup # NOLINT
import statick_tool
with open("README.md", encoding="utf8") as f:
LONG_DESCRIPTION = f.read()
TEST_DEPS = [
"backports.tempfile",
"lark",
"pylint-django",
"pytest",
"mock",
"tox",
]
EXTRAS = {
"test": TEST_DEPS,
}
setup(
name="statick",
description="Making code quality easier.",
author="SSC Pacific",
version=statick_tool.__version__,
packages=["statick_tool"],
package_data={
"statick_tool": [
"rsc/.*",
"rsc/*",
"rsc/plugin_mapping/*",
"plugins/*.py",
"plugins/discovery/*",
"plugins/tool/*",
"plugins/reporting/*",
]
},
scripts=["statick"],
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
install_requires=[
"bandit",
"black",
"cmakelint",
"cpplint",
"deprecated",
"docformatter",
"flawfinder",
"isort",
"lizard",
"mypy",
"pycodestyle",
"pydocstyle",
"pyflakes",
"pylint",
"PyYAML",
"ruff>=0.0.237",
"tabulate",
"xmltodict",
"yamllint",
"yapsy",
],
tests_require=TEST_DEPS,
extras_require=EXTRAS,
url="https://github.com/sscpac/statick",
classifiers=[
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Testing",
],
)