mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 00:14:41 +01:00
Setup add [full] extras tag
This commit is contained in:
parent
fc897fa55c
commit
9cd3f4bf18
3 changed files with 28 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -37,7 +37,8 @@ bin/
|
|||
/lib/
|
||||
include/
|
||||
venv/
|
||||
.venv/
|
||||
.venv*/
|
||||
|
||||
|
||||
# Mac
|
||||
.DS_Store
|
||||
|
|
25
news/is_3622.rst
Normal file
25
news/is_3622.rst
Normal file
|
@ -0,0 +1,25 @@
|
|||
**Added:**
|
||||
|
||||
* Setup extras tag '[full]' to install prompt-toolkit and pygments in one fell swoop.
|
||||
Full feature install can be ``pip install xonsh[full]``.
|
||||
|
||||
**Changed:**
|
||||
|
||||
* Tutorial Getting Started doc to reference new install option and to reorganize
|
||||
for smoother flow.
|
||||
|
||||
**Deprecated:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Removed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Security:**
|
||||
|
||||
* <news item>
|
1
setup.py
1
setup.py
|
@ -398,6 +398,7 @@ def main():
|
|||
"linux": ["distro"],
|
||||
"proctitle": ["setproctitle"],
|
||||
"zipapp": ['importlib_resources; python_version < "3.7"'],
|
||||
"full" : ["ptk", "pygments", "distro"]
|
||||
}
|
||||
skw["python_requires"] = ">=3.6"
|
||||
setup(**skw)
|
||||
|
|
Loading…
Add table
Reference in a new issue