|
| 1 | +[metadata] |
| 2 | +name=shtab |
| 3 | +description=Automatically generate shell tab completion scripts for python CLI apps |
| 4 | +long_description=file: README.rst |
| 5 | +long_description_content_type=text/x-rst |
| 6 | +license=Apache-2.0 |
| 7 | +license_file=LICENCE |
| 8 | +url=https://github.com/iterative/shtab |
| 9 | +project_urls= |
| 10 | + Changelog=https://github.com/iterative/shtab/releases |
| 11 | + Documentation=https://github.com/iterative/shtab/#shtab |
| 12 | +maintainer=Casper da Costa-Luis |
| 13 | + |
| 14 | +keywords=tab, complete, completion, shell, bash, zsh, argparse |
| 15 | +platforms=any |
| 16 | +provides=shtab |
| 17 | +classifiers= |
| 18 | + Development Status :: 4 - Beta |
| 19 | + Environment :: Console |
| 20 | + Environment :: MacOS X |
| 21 | + Environment :: Other Environment |
| 22 | + Intended Audience :: Developers |
| 23 | + Intended Audience :: Education |
| 24 | + Intended Audience :: End Users/Desktop |
| 25 | + Intended Audience :: Other Audience |
| 26 | + Intended Audience :: System Administrators |
| 27 | + License :: OSI Approved :: Apache Software License |
| 28 | + Operating System :: MacOS |
| 29 | + Operating System :: MacOS :: MacOS X |
| 30 | + Operating System :: POSIX |
| 31 | + Operating System :: POSIX :: BSD |
| 32 | + Operating System :: POSIX :: BSD :: FreeBSD |
| 33 | + Operating System :: POSIX :: Linux |
| 34 | + Operating System :: POSIX :: SunOS/Solaris |
| 35 | + Operating System :: Unix |
| 36 | + Programming Language :: Other Scripting Engines |
| 37 | + Programming Language :: Python |
| 38 | + Programming Language :: Python :: 2 |
| 39 | + Programming Language :: Python :: 2.7 |
| 40 | + Programming Language :: Python :: 3 |
| 41 | + Programming Language :: Python :: 3.6 |
| 42 | + Programming Language :: Python :: 3.7 |
| 43 | + Programming Language :: Python :: 3.8 |
| 44 | + Programming Language :: Python :: 3.9 |
| 45 | + Programming Language :: Python :: Implementation |
| 46 | + Programming Language :: Python :: Implementation :: IronPython |
| 47 | + Programming Language :: Python :: Implementation :: PyPy |
| 48 | + Programming Language :: Unix Shell |
| 49 | + Topic :: Desktop Environment |
| 50 | + Topic :: Education :: Computer Aided Instruction (CAI) |
| 51 | + Topic :: Education :: Testing |
| 52 | + Topic :: Office/Business |
| 53 | + Topic :: Other/Nonlisted Topic |
| 54 | + Topic :: Software Development :: Build Tools |
| 55 | + Topic :: Software Development :: Libraries |
| 56 | + Topic :: Software Development :: Libraries :: Python Modules |
| 57 | + Topic :: Software Development :: Pre-processors |
| 58 | + Topic :: Software Development :: User Interfaces |
| 59 | + Topic :: System :: Installation/Setup |
| 60 | + Topic :: System :: Shells |
| 61 | + Topic :: System :: System Shells |
| 62 | + Topic :: Terminals |
| 63 | + Topic :: Utilities |
| 64 | +[options] |
| 65 | +setup_requires=setuptools>=42; setuptools_scm[toml]>=3.4 |
| 66 | +install_requires= |
| 67 | + argparse; python_version < "2.7" or ("3.0" <= python_version and python_version < "3.2") |
| 68 | +python_requires= >=2.7, !=3.0.*, !=3.1.* |
| 69 | +packages=find: |
| 70 | +[options.entry_points] |
| 71 | +console_scripts= |
| 72 | + shtab=shtab.main:main |
1 | 73 | [bdist_wheel] |
2 | 74 | universal=1 |
3 | 75 |
|
4 | 76 | [flake8] |
5 | | -max_line_length=79 |
6 | | -ignore= |
7 | | - W503 |
8 | | - D100 |
9 | | - D103 |
10 | | - D105 |
11 | | -exclude=.tox,build,dist,.git,__pycache__ |
| 77 | +max_line_length=88 |
| 78 | +extend-ignore=E203,P1 |
| 79 | +exclude=build,dist,.eggs,.git,__pycache__ |
12 | 80 |
|
13 | 81 | [isort] |
14 | | -include_trailing_comma=true |
| 82 | +profile=black |
15 | 83 | known_first_party=shtab |
16 | | -known_third_party=argopt,pytest |
17 | | -line_length=79 |
18 | | -multi_line_output=3 |
|
0 commit comments