-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 855 Bytes
/
pyproject.toml
File metadata and controls
38 lines (31 loc) · 855 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fastaistyle"
dynamic = ["version"]
description = "Style checker for fast.ai coding conventions"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [{ name = "Jeremy Howard", email = "j@fast.ai" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
]
dependencies = ["tomli; python_version < '3.11'"]
[project.optional-dependencies]
dev = [
"fastship",
"build",
"twine",
]
[project.scripts]
chkstyle = "chkstyle.core:cli"
[project.urls]
Homepage = "https://github.com/AnswerDotAI/fastaistyle"
[tool.setuptools.dynamic]
version = { attr = "chkstyle.__version__" }
[tool.pytest.ini_options]
testpaths = ["tests"]