Skip to content

Commit 58ac7a2

Browse files
committed
Add has-flag dependency
1 parent a4214d1 commit 58ac7a2

File tree

3 files changed

+222
-0
lines changed

3 files changed

+222
-0
lines changed

poetry.lock

Lines changed: 217 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ license = "MIT"
99

1010
[tool.poetry.dependencies]
1111
python = "^3.6"
12+
has-flag = "^0.1.1"
1213

1314
[tool.poetry.dev-dependencies]
1415
pytest = "^5.2"

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
package_data = \
88
{'': ['*']}
99

10+
install_requires = \
11+
['has-flag>=0.1.1,<0.2.0']
12+
1013
setup_kwargs = {
1114
'name': 'supports-color',
1215
'version': '0.1.0',
@@ -19,6 +22,7 @@
1922
'url': 'https://github.com/shawwn/supports-color-python',
2023
'packages': packages,
2124
'package_data': package_data,
25+
'install_requires': install_requires,
2226
'python_requires': '>=3.6,<4.0',
2327
}
2428

0 commit comments

Comments
 (0)