-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
45 lines (42 loc) · 1.32 KB
/
setup.cfg
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
[metadata]
name = pipx
version = attr: pipx.version.__version__
author = Chad Smith
author_email = Chad Smith <grassfedcode@gmail.com>
description = Install and Run Python Applications in Isolated Environments
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/pypa/pipx
project_urls =
Documentation = https://pypa.github.io/pipx/
Source Code = https://github.com/pypa/pipx
Bug Tracker = https://github.com/pypa/pipx/issues
keywords = pip, install, cli, workflow, Virtual Environment
license = License :: OSI Approved :: MIT License
classifiers =
Operating System :: OS Independent
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
[options]
packages = find:
package_dir =
= src
include_package_data = true
zip_safe = true
python_requires = >=3.6
install_requires =
colorama>=0.4.4;sys_platform=="win32"
userpath>=1.6.0
argcomplete>=1.9.4
packaging>=20.0
importlib-metadata>=3.3.0; python_version < '3.8'
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
pipx = pipx.main:cli