|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools>=61.2"] |
3 | | -build-backend = "setuptools.build_meta" |
| 2 | +requires = ["hatchling"] |
| 3 | +build-backend = "hatchling.build" |
4 | 4 |
|
5 | 5 | [project] |
6 | 6 | name = "flake8-isort" |
7 | 7 | version = "6.1.1.dev0" |
8 | | -authors = [{ name = "Gil Forcada", email = "gil.gnome@gmail.com" }] |
9 | | -license = { text = "GPL version 2" } |
10 | | -description = "flake8 plugin that integrates isort ." |
| 8 | +authors = [ |
| 9 | + { name="Gil Forcada Codinachs", email="gil.gnome@gmail.com" }, |
| 10 | +] |
| 11 | +description = "flake8 plugin that integrates isort" |
11 | 12 | keywords = ["pep8", "flake8", "python", "isort", "imports"] |
| 13 | +license = {file = "LICENSE"} |
12 | 14 | readme = "README.rst" |
| 15 | +requires-python = ">=3.8" |
13 | 16 | classifiers = [ |
14 | | - "Development Status :: 5 - Production/Stable", |
15 | | - "Environment :: Console", |
16 | | - "Framework :: Flake8", |
17 | | - "Intended Audience :: Developers", |
18 | | - "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", |
19 | | - "Operating System :: OS Independent", |
20 | | - "Programming Language :: Python", |
21 | | - "Programming Language :: Python :: 3", |
22 | | - "Programming Language :: Python :: 3 :: Only", |
23 | | - "Programming Language :: Python :: 3.8", |
24 | | - "Programming Language :: Python :: 3.9", |
25 | | - "Programming Language :: Python :: 3.10", |
26 | | - "Programming Language :: Python :: 3.11", |
27 | | - "Programming Language :: Python :: Implementation :: CPython", |
28 | | - "Programming Language :: Python :: Implementation :: PyPy", |
29 | | - "Topic :: Software Development", |
30 | | - "Topic :: Software Development :: Quality Assurance", |
| 17 | + "Development Status :: 5 - Production/Stable", |
| 18 | + "Environment :: Console", |
| 19 | + "Framework :: Flake8", |
| 20 | + 'Framework :: Plone', |
| 21 | + "Intended Audience :: Developers", |
| 22 | + "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", |
| 23 | + "Operating System :: OS Independent", |
| 24 | + "Programming Language :: Python", |
| 25 | + "Programming Language :: Python :: 3", |
| 26 | + "Programming Language :: Python :: 3 :: Only", |
| 27 | + "Programming Language :: Python :: 3.8", |
| 28 | + "Programming Language :: Python :: 3.9", |
| 29 | + "Programming Language :: Python :: 3.10", |
| 30 | + "Programming Language :: Python :: 3.11", |
| 31 | + "Programming Language :: Python :: 3.12", |
| 32 | + "Programming Language :: Python :: Implementation :: CPython", |
| 33 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 34 | + "Topic :: Software Development", |
| 35 | + "Topic :: Software Development :: Quality Assurance", |
31 | 36 | ] |
32 | | -urls = { Homepage = "https://github.com/gforcada/flake8-isort" } |
33 | | -requires-python = ">=3.8" |
34 | 37 | dependencies = ["flake8", "isort >= 5.0.0, <6"] |
35 | 38 |
|
36 | | -[project.entry-points] |
37 | | -"flake8.extension" = { I00 = "flake8_isort:Flake8Isort" } |
| 39 | +[project.urls] |
| 40 | +"Homepage" = "https://github.com/gforcada/flake8-isort" |
| 41 | +"Bug Tracker" = "https://github.com/gforcada/flake8-isort/issues" |
| 42 | +"Changelog" = "https://github.com/gforcada/flake8-isort/blob/main/CHANGES.rst" |
38 | 43 |
|
39 | 44 | [project.optional-dependencies] |
40 | 45 | test = ["pytest"] |
41 | 46 |
|
42 | | -[tool.setuptools] |
43 | | -py-modules = ["flake8_isort"] |
44 | | -zip-safe = false |
45 | | -include-package-data = true |
| 47 | +[project.entry-points."flake8.extension"] |
| 48 | +I00 = "flake8_isort:Flake8Isort" |
| 49 | + |
| 50 | +[tool.isort] |
| 51 | +profile = "plone" |
46 | 52 |
|
47 | | -[tool."zest.releaser"] |
48 | | -create-wheel = "yes" |
| 53 | +[tool.black] |
| 54 | +target-version = ["py38"] |
| 55 | +skip-string-normalization = true |
49 | 56 |
|
50 | 57 | [tool.check-manifest] |
51 | | -ignore = """ |
52 | | -.installed.cfg""" |
53 | | - |
54 | | -[tool.isort] |
55 | | -profile = "black" |
| 58 | +ignore = [ |
| 59 | + ".vscode/*", |
| 60 | + "venv/*", |
| 61 | +] |
0 commit comments