-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1005 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 1005 Bytes
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
[project]
name = "mypy_primer"
version = "0.1.0"
authors = [{ name = "Shantanu Jain" }, { email = "[email protected]" }]
description = "Run mypy over millions of lines of code"
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
]
[project.urls]
homepage = "https://github.com/hauntsaninja/mypy_primer"
repository = "https://github.com/hauntsaninja/mypy_primer"
[project.scripts]
mypy_primer = "mypy_primer.main:main"
[dependency-groups]
dev = [
"black>=25.1.0",
"flake8>=7.1.2",
"isort>=6.0.1",
"mypy>=1.15.0",
]
[tool.black]
line-length = 100
skip-magic-trailing-comma = true
[tool.isort]
profile = "black"
line_length = 100
skip_gitignore = true
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"