Skip to content

Commit

Permalink
Merge pull request #15 from jnsebgosselin/move_install_require
Browse files Browse the repository at this point in the history
PR: Move install requires to extras requires
  • Loading branch information
jnsebgosselin committed Mar 22, 2024
2 parents be1e09f + eb7932c commit 7020d8e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,15 @@ You can update `QtAppUtils` by running:
```commandlines
pip install qtapputils -U
```

This will only install or update `qtapputils` without installing of updating
the dependencies.

The above commands will only install or update `QtAppUtils` without
its dependencies.

To install `QtAppUtils` along with its dependencies, you can use:

```commandlines
pip install qtapputils[with-deps]
```
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
packages=setuptools.find_packages(),
package_data={},
include_package_data=True,
install_requires=INSTALL_REQUIRES,
extras_require={'with-deps': INSTALL_REQUIRES},
classifiers=["Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"],
Expand Down

0 comments on commit 7020d8e

Please sign in to comment.