setup.py (poetry-1.1.15) | : | setup.py (poetry-1.2.0) | ||
---|---|---|---|---|
# -*- coding: utf-8 -*- | from __future__ import annotations | |||
from distutils.core import setup | from distutils.core import setup | |||
packages = ["project_with_extras"] | packages = ["project_with_extras"] | |||
package_data = {"": ["*"]} | package_data = {"": ["*"]} | |||
extras_require = {"extras_a": ["pendulum>=1.4.4"], "extras_b": ["cachy>=0.2.0"]} | extras_require = {"extras_a": ["pendulum>=1.4.4"], "extras_b": ["cachy>=0.2.0"]} | |||
setup_kwargs = { | setup_kwargs = { | |||
"name": "project-with-extras", | "name": "project-with-extras", | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 2 lines changed or added |