-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.31 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (46 loc) · 1.31 KB
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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "iscan"
dynamic = ["version"]
description = "iscan helps you identify your project's dependencies."
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Zhengnan Zhao"}
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
urls.Repository = "https://github.com/zzhengnan/iscan"
scripts.iscan = "iscan.scan:main"
optional-dependencies.build = ["setuptools", "twine", "wheel"]
optional-dependencies.dev = [
"beautifulsoup4",
"coverage",
"mypy",
"pre-commit",
"pytest",
"requests",
"ruff",
]
[tool.setuptools.dynamic]
version = {attr = "iscan.__version__"}
[tool.ruff]
line-length = 120
exclude = ["build", "dist", "iscan/std_lib.py"]
lint.select = ["E", "F", "I"]
lint.ignore = ["F401"]
lint.isort.known-first-party = ["iscan"]
lint.isort.lines-between-types = 0
lint.isort.lines-after-imports = 2
[tool.mypy]
overrides = [{module = "iscan.tests.*", ignore_errors = true}]