forked from kislyuk/argcomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·62 lines (58 loc) · 2.35 KB
/
setup.py
File metadata and controls
executable file
·62 lines (58 loc) · 2.35 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
#!/usr/bin/env python
import glob
from setuptools import find_packages, setup
install_requires = []
tests_require = ["coverage", "pexpect", "wheel", "ruff", "mypy"]
importlib_backport_requires = ["importlib-metadata >= 0.23, < 7"]
setup(
name="argcomplete",
version="3.0.8",
url="https://github.com/kislyuk/argcomplete",
project_urls={
"Documentation": "https://kislyuk.github.io/argcomplete",
"Source Code": "https://github.com/kislyuk/argcomplete",
"Issue Tracker": "https://github.com/kislyuk/argcomplete/issues",
"Change Log": "https://github.com/kislyuk/argcomplete/blob/master/Changes.rst",
},
license="Apache Software License",
author="Andrey Kislyuk",
author_email="kislyuk@gmail.com",
description="Bash tab completion for argparse",
long_description=open("README.rst").read(),
python_requires=">=3.6",
install_requires=install_requires,
tests_require=tests_require,
extras_require={
"test": tests_require,
':python_version == "3.6"': importlib_backport_requires,
':python_version == "3.7"': importlib_backport_requires,
},
packages=find_packages(exclude=["test", "test.*"]),
scripts=glob.glob("scripts/*"),
package_data={"argcomplete": ["bash_completion.d/python-argcomplete", "py.typed"]},
zip_safe=False,
include_package_data=True,
platforms=["MacOS X", "Posix"],
test_suite="test",
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Shells",
"Topic :: Terminals",
],
)