-
-
Save dargueta/e3f0048184fe847a22ac460a90d36b96 to your computer and use it in GitHub Desktop.
>= plus != generates invalid Requires-Dist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Metadata-Version: 2.1 | |
Name: garbage | |
Version: 0.1.0 | |
Summary: none | |
Author: Your Name | |
Author-email: you@example.com | |
Requires-Python: >=3.7.1,<4.0.0 | |
Classifier: Programming Language :: Python :: 3 | |
Classifier: Programming Language :: Python :: 3.8 | |
Classifier: Programming Language :: Python :: 3.9 | |
Requires-Dist: google-api-python-client (>=1.8,<2.0 || >=2.1,<3.0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "garbage" | |
version = "0.1.0" | |
description = "none" | |
authors = ["Your Name <you@example.com>"] | |
[tool.poetry.dependencies] | |
google-api-python-client = "^1.8 || ^2.1" | |
python = "^3.7.1" | |
[tool.poetry.dev-dependencies] | |
[build-system] | |
requires = ["poetry-core>=1.0.0"] | |
build-backend = "poetry.core.masonry.api" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment