Commit 2324a28f by Sébastien Eustace

Update poetry.toml

parent 54c82eeb
[package]
name = "poetry"
version = "0.1.0"
description = ""
description = "Python dependency management and packaging make easy."
# Compatibe Python versions
python = ["~2.7", "^3.5"]
python-versions = ["^3.6"]
license = "MIT"
......@@ -12,61 +11,26 @@ authors = [
"Sébastien Eustace <sebastien@eustace.io>"
]
# The readme file of the package.
#
# The file can be either README.rst or README.md.
#
# If it's a markdown file you have to install the pandoc utility
# so that it can be automatically converted to a RestructuredText file.
#
# You also need to have the pypandoc package installed.
# If you install poet via pip you can use the markdown-readme extra to do so.
readme = "README.md"
# An URL to the homepage of the project.
# homepage = "https://github.com/sdispater/poet"
# An URL to the repository of the project.
# repository = "https://github.com/sdispater/poet"
# An URL to the documentation of the project.
# documentation = "https://github.com/sdispater/poet"
homepage = "https://poetry.eustace.io/"
repository = "https://github.com/sdispater/poet"
documentation = "https://poetry.eustace.io/docs"
# A list of keywords (max: 5) that the package is related to.
# keywords = ["packaging", "poet"]
keywords = ["packaging", "dependency", "poetry"]
# A list of patterns that will be included in the final package.
#
# Python packages, modules and package data will be automatically detected
# include = ['poet/**/*', 'LICENSE']
#
# If you packages lies elsewhere (like in a src directory),
# you can tell poet to find them from there:
# include = { from = 'src', include = '**/*' }
#
# Similarly, you can tell that the src directory represent the foo package:
# include = { from = 'src', include = '**/*', as = 'foo' }
include = ['poetry/**/*', 'LICENSE']
# Features are sets of optional dependencies, which enhance a package,
# but are not required
# [features]
# markdown-readme = ["pypandoc"] # Adds support for markdown readmes
[dependencies]
# Main dependencies of the project
# See https://github.com/sdispater/poet#dependencies-and-dev-dependencies
cleo = "^0.6"
pendulum = "^1.3"
requests = "^2.18"
toml = "^0.9"
cachy = "^0.1.0"
[dev-dependencies]
# Development dependencies of the package
# See https://github.com/sdispater/poet#dependencies-and-dev-dependencies
pytest = "^3.3"
# CLI scripts
#
# They must follow the following convention:
# {script_name} = "{my.package:executable}"
#
# [scripts]
# poet = 'poet:app.run'
[scripts]
poetry = 'poetry:console.run'
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