mirror of
https://github.com/Brandon-Rozek/website.git
synced 2024-11-09 10:40:34 -05:00
Mentioned plugins
This commit is contained in:
parent
adfb4fac36
commit
70bcf28a2f
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ draft: false
|
|||
tags: ["python"]
|
||||
---
|
||||
|
||||
It is possible to make different package group of optional dependencies for a Python package. This is useful if you want to include an extra set of dependencies for developers/maintainers of the package. [OpenAI Gym uses it](https://github.com/openai/gym/blob/67212547ac29296839434324a0d5996e48fae840/setup.py) to denote different categories of environments you can setup.
|
||||
It is possible to make different package group of optional dependencies for a Python package. This is useful if you want to include an extra set of dependencies for developers/maintainers of the package. We can also define a plugin-based package similarly to how [OpenAI Gym uses it](https://github.com/openai/gym/blob/67212547ac29296839434324a0d5996e48fae840/setup.py) to denote different categories of environments you can setup.
|
||||
|
||||
```python
|
||||
from setuptools import setup, find_packages
|
||||
|
|
Loading…
Reference in a new issue