|
2 | 2 | build-backend = 'setuptools.build_meta' |
3 | 3 | requires = ['setuptools >= 44', 'wheel'] |
4 | 4 |
|
| 5 | +[project] |
| 6 | +name = "zimports" |
| 7 | +version = "0.6.2" |
| 8 | +dependencies = [ |
| 9 | + "pyflakes", |
| 10 | + "flake8-import-order", |
| 11 | + "tomli", |
| 12 | + "importlib-metadata;python_version<'3.10'", |
| 13 | +] |
| 14 | +requires-python = ">= 3.9" |
| 15 | +authors = [ |
| 16 | + {name = "Mike Bayer", email = "mike_mp@zzzcomputing.com"} |
| 17 | +] |
| 18 | +description = "Yet another import fixing tool" |
| 19 | +readme = "README.rst" |
| 20 | +license = "MIT" |
| 21 | +license-files = ["LICENSE"] |
| 22 | +classifiers = [ |
| 23 | + "Development Status :: 4 - Beta", |
| 24 | + "Intended Audience :: Developers", |
| 25 | + "Operating System :: OS Independent", |
| 26 | + "Programming Language :: Python :: 3", |
| 27 | + "Programming Language :: Python :: 3.9", |
| 28 | + "Programming Language :: Python :: 3.10", |
| 29 | + "Programming Language :: Python :: 3.11", |
| 30 | + "Programming Language :: Python :: 3.12", |
| 31 | + "Programming Language :: Python :: 3.13", |
| 32 | + "Programming Language :: Python :: Implementation :: CPython", |
| 33 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 34 | +] |
| 35 | + |
| 36 | +[project.urls] |
| 37 | +Homepage = "https://github.com/sqlalchemyorg/zimports" |
| 38 | +Issues = "https://github.com/sqlalchemyorg/zimports/issues" |
| 39 | + |
| 40 | +[project.scripts] |
| 41 | +zimports = "zimports:main" |
| 42 | + |
5 | 43 | [tool.black] |
6 | 44 | line-length = 79 |
7 | 45 | target-version = ['py39'] |
8 | 46 | exclude = './test_files' |
9 | 47 |
|
| 48 | +[tool.pytest.ini_options] |
| 49 | +addopts = "--tb native -v -r sfxX --maxfail=25 -p no:warnings -p no:logging" |
| 50 | +python_files = ["tests.py"] |
| 51 | + |
| 52 | +[tool.setuptools.packages.find] |
| 53 | +include = ["zimports*"] |
| 54 | + |
10 | 55 | [tool.zimports] |
11 | 56 | black-line-length = 79 |
12 | 57 | keep-unused-type-checking = true |
0 commit comments