8000 Adding conda extra, pyyaml won't be installed by default. · pyupio/dparse@b18762f · GitHub
[go: up one dir, main page]

10000
Skip to content

Commit b18762f

Browse files
committed
Adding conda extra, pyyaml won't be installed by default.
1 parent 69ba6dc commit b18762f

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

README.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,12 @@ If you want to update Pipfiles, install the pipenv extra:
5959
6060
$ pip install dparse[pipenv]
6161
62+
If you want to parse conda YML files, install the conda extra:
63+
64+
.. code-block:: console
65+
66+
$ pip install dparse[conda]
67+
6268
*****
6369
Usage
6470
*****

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
requirements = [
1515
"packaging",
16-
"pyyaml",
1716
"toml",
1817
]
1918

@@ -44,6 +43,7 @@
4443
],
4544
python_requires=">=3.5",
4645
extras_require={
47-
'pipenv': ["pipenv"],
46+
'pipenv': ["pipenv"],
47+
'conda': ["pyyaml"]
4848
}
4949
)

0 commit comments

Comments
 (0)
0