-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 928 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">= 3.8"
name = "lintception"
version = "1.0.2"
authors = [
{ name="John Doknjas", email="jdoknjas@sfu.ca" },
]
description = "Runs a few popular linters in series (mypy, vulture, vermin, pylint, pytype), and also does some other checks."
keywords = ["linter", "mypy", "vulture", "vermin", "pylint", "pytype", "testing", "linting", "lintception"]
dependencies = [
"mypy",
"vulture",
"vermin",
"pylint",
"pytype",
]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Operating System :: OS Independent",
]
[project.scripts]
lintception = "lintception:main.main"
[project.urls]
Homepage = "https://github.com/johndoknjas/lintception"
[tool.setuptools]
packages = ["lintception"]