-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (47 loc) · 1.52 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "flake8-pyspark-with-column"
dynamic = ["version"]
description = "A Flake8 plugin to check for PySpark withColumn usage in loops"
authors = [
{name = "Sem Sinchenko", email = "[email protected]"},
]
license = "Apache-2.0"
readme = "README.md"
classifiers = [
"Framework :: Flake8",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
]
keywords = ["flake8", "pyspark", "linter", "quality"]
dependencies = [
"flake8 >= 3.0.0",
]
[project.urls]
Homepage = "https://github.com/SemyonSinchenko/flake8-pyspark-with-column"
Repository = "https://github.com/SemyonSinchenko/flake8-pyspark-with-column.git"
[project.entry-points."flake8.extension"]
P = "flake8_pyspark_with_column:Plugin"
[tool.hatch.build.targets.wheel]
packages = ["flake8_pyspark_with_column.py"]
[tool.hatch.build.targets.sdist]
include = [
"flake8_pyspark_with_column.py",
"README.md",
"LICENSE",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
version_scheme = "no-guess-dev"