File: pyproject.toml

package info (click to toggle)
autoflake 2.3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 292 kB
  • sloc: python: 3,962; sh: 6; makefile: 5
file content (39 lines) | stat: -rw-r--r-- 1,018 bytes parent folder | download
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "autoflake"
description = "Removes unused imports and unused variables"
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
  "Environment :: Console",
  "Intended Audience :: Developers",
  "License :: OSI Approved :: MIT License",
  "Programming Language :: Python :: 3",
  "Programming Language :: Python :: 3 :: Only",
  "Topic :: Software Development :: Quality Assurance",
]
keywords = ["clean", "fix", "automatic", "unused", "import"]
urls = { Homepage = "https://www.github.com/PyCQA/autoflake" }
requires-python = ">=3.10"
dependencies = ["pyflakes>=3.0.0", "tomli>=2.0.1;python_version<'3.11'"]
dynamic = ["version"]

[project.readme]
file = "README.md"
content-type = "text/markdown"

[project.scripts]
autoflake = "autoflake:main"

[tool.hatch.version]
path = "autoflake.py"

[tool.hatch.build.targets.sdist]
exclude = ["/.github"]

[tool.hatch.build]
include = ["/autoflake.py"]
exclude = ["/.gitignore"]