-
Notifications
You must be signed in to change notification settings - Fork 82
/
pyproject.toml
38 lines (32 loc) · 1.02 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "autoflake"
description = "Removes unused imports and unused variables"
license = { text = "MIT" }
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.9"
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", "/test_autoflake.py", "/LICENSE", "/README.md"]
exclude = ["/.gitignore"]