Commit 6acf894c by Sébastien Eustace

Update README

parent 8f764c2b
...@@ -75,7 +75,7 @@ homepage = "https://github.com/sdispater/poetry" ...@@ -75,7 +75,7 @@ homepage = "https://github.com/sdispater/poetry"
keywords = ['packaging', 'poetry'] keywords = ['packaging', 'poetry']
[tool.pyproject.dependencies] [tool.poetry.dependencies]
python = "~2.7 || ^3.2" # Compatible python versions must be declared here python = "~2.7 || ^3.2" # Compatible python versions must be declared here
toml = "^0.9" toml = "^0.9"
requests = "^2.13" requests = "^2.13"
...@@ -86,13 +86,13 @@ wheel = "^0.29" ...@@ -86,13 +86,13 @@ wheel = "^0.29"
pip-tools = "^1.8.2" pip-tools = "^1.8.2"
cleo = { git = "https://github.com/sdispater/cleo.git", branch = "master" } cleo = { git = "https://github.com/sdispater/cleo.git", branch = "master" }
[tool.pyproject.dev-dependencies] [tool.poetry.dev-dependencies]
pytest = "^3.0" pytest = "^3.0"
pytest-cov = "^2.4" pytest-cov = "^2.4"
coverage = "<4.0" coverage = "<4.0"
httpretty = "^0.8.14" httpretty = "^0.8.14"
[tool.pyproject.scripts] [tool.poetry.scripts]
poet = 'poet:app.run' poet = 'poet:app.run'
``` ```
......
...@@ -87,7 +87,7 @@ the new, `standardized <https://www.python.org/dev/peps/pep-0518/>`__ ...@@ -87,7 +87,7 @@ the new, `standardized <https://www.python.org/dev/peps/pep-0518/>`__
keywords = ['packaging', 'poetry'] keywords = ['packaging', 'poetry']
[tool.pyproject.dependencies] [tool.poetry.dependencies]
python = "~2.7 || ^3.2" # Compatible python versions must be declared here python = "~2.7 || ^3.2" # Compatible python versions must be declared here
toml = "^0.9" toml = "^0.9"
requests = "^2.13" requests = "^2.13"
...@@ -98,13 +98,13 @@ the new, `standardized <https://www.python.org/dev/peps/pep-0518/>`__ ...@@ -98,13 +98,13 @@ the new, `standardized <https://www.python.org/dev/peps/pep-0518/>`__
pip-tools = "^1.8.2" pip-tools = "^1.8.2"
cleo = { git = "https://github.com/sdispater/cleo.git", branch = "master" } cleo = { git = "https://github.com/sdispater/cleo.git", branch = "master" }
[tool.pyproject.dev-dependencies] [tool.poetry.dev-dependencies]
pytest = "^3.0" pytest = "^3.0"
pytest-cov = "^2.4" pytest-cov = "^2.4"
coverage = "<4.0" coverage = "<4.0"
httpretty = "^0.8.14" httpretty = "^0.8.14"
[tool.pyproject.scripts] [tool.poetry.scripts]
poet = 'poet:app.run' poet = 'poet:app.run'
There are some things we can notice here: There are some things we can notice here:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment