-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
60 lines (52 loc) · 1.84 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "hulks"
description = "Olist custom linting hooks"
readme = "README.rst"
license = { file = "LICENSE" }
authors = [{ name = "Olist", email = "[email protected]" }]
keywords = ["pre-commit"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
]
requires-python = ">=3.8"
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/olist/hulks/"
[project.scripts]
check-default-commentary-django-migration = "hulks.check_default_commentary_django_migration:main"
check-django-migrations-filename = "hulks.check_django_migrations_filename:main"
check-filename = "hulks.check_filename:main"
check-invalid-domains = "hulks.check_invalid_domains:main"
check-logger = "hulks.check_logger:main"
check-mutable-defaults = "hulks.check_mutable_defaults:main"
check-print = "hulks.check_print:main"
[tool.black]
line-length = 110
target-version = ["py38", "py39", "py310", "py311"]
[tool.isort]
profile = "black"
line_length = 110
known_localfolder = ["hulks", "tests"]
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
default_section = "THIRDPARTY"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["src/hulks"]
exclude = ["src/hulks/example.py"]
[tool.hatch.build.targets.sdist]
exclude = ["/.github"]