Skip to content

Commit

Permalink
Add setuptools and pip to dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lucekdudek committed Jan 11, 2023
1 parent 5590942 commit bae941a
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,13 @@ readme = "README.md"

[tool.poetry.dependencies]
python = "^3.6.2"
setuptools = [
{ version = "*", python = ">=3.7" },
{ version = "^59.0.0", python = ">=3.6.2, <3.7" },
]
aiohttp = "^3.6"
aiohttp-sse-client = "^0.1.7"
dataclasses = { version = "^0.8", python = ">=3.6, <3.7"}
dataclasses = { version = "^0.8", python = ">=3.6, <3.7" }
more-itertools = "^8.6.0"
urllib3 = "^1.25.9"
typing_extensions = "^3.10.0"
Expand Down Expand Up @@ -50,7 +54,7 @@ Deprecated = "^1.2.12"
python-statemachine = "^0.8.0"

# goth tests
pexpect = {version = "^4.8.0", optional = true}
pexpect = { version = "^4.8.0", optional = true }

# Docs
sphinx = { version = "^4.0.1", optional = true }
Expand All @@ -62,6 +66,10 @@ integration-tests = ['goth', 'pytest', 'pytest-asyncio', 'pexpect']
docs = ['sphinx', 'sphinx-autodoc-typehints', 'sphinx-rtd-theme']

[tool.poetry.dev-dependencies]
pip = [
{ version = "*", python = ">=3.7" },
{ version = "^21.0.0", python = ">=3.6.2, <3.7" },
]
black = "^21.7b0"
factory-boy = "^3.2.0"
isort = "^5.10.1"
Expand Down

0 comments on commit bae941a

Please sign in to comment.