-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (56 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
65 lines (56 loc) · 1.59 KB
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
61
62
63
64
65
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "zimports"
dynamic = ["version"]
dependencies = [
"pyflakes",
"flake8-import-order",
"tomli",
"importlib-metadata;python_version<'3.10'",
]
requires-python = ">= 3.9"
authors = [
{name = "Mike Bayer", email = "mike_mp@zzzcomputing.com"}
]
description = "Yet another import fixing tool"
readme = "README.rst"
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
Homepage = "https://github.com/sqlalchemyorg/zimports"
Issues = "https://github.com/sqlalchemyorg/zimports/issues"
[project.scripts]
zimports = "zimports:main"
[tool.hatch.build.targets.sdist]
include = ["zimports*"]
[tool.hatch.version]
path = "zimports/__init__.py"
[tool.hatch.envs.test]
dependencies = [
"pytest"
]
[tool.black]
line-length = 79
target-version = ['py39']
exclude = './test_files'
[tool.pytest.ini_options]
addopts = "--tb native -v -r sfxX --maxfail=25 -p no:warnings -p no:logging"
python_files = ["tests.py"]
[tool.zimports]
black-line-length = 79
keep-unused-type-checking = true