Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
python-poetry
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
python-poetry
Commits
2324a28f
Unverified
Commit
2324a28f
authored
Feb 27, 2018
by
Sébastien Eustace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update poetry.toml
parent
54c82eeb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
48 deletions
+12
-48
poetry.toml
+12
-48
No files found.
poetry.toml
View file @
2324a28f
[package]
[package]
name
=
"poetry"
name
=
"poetry"
version
=
"0.1.0"
version
=
"0.1.0"
description
=
""
description
=
"
Python dependency management and packaging make easy.
"
# Compatibe Python versions
python-versions
=
["^3.6"]
python
=
[
"~2.7"
,
"^3.5"
]
license
=
"MIT"
license
=
"MIT"
...
@@ -12,61 +11,26 @@ authors = [
...
@@ -12,61 +11,26 @@ authors = [
"Sébastien Eustace <sebastien@eustace.io>"
"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"
readme
=
"README.md"
# An URL to the homepage of the project.
homepage
=
"https://poetry.eustace.io/"
# homepage = "https://github.com/sdispater/poet"
repository
=
"https://github.com/sdispater/poet"
# An URL to the repository of the project.
documentation
=
"https://poetry.eustace.io/docs"
# repository = "https://github.com/sdispater/poet"
# An URL to the documentation of the project.
# documentation = "https://github.com/sdispater/poet"
# A list of keywords (max: 5) that the package is related to.
keywords
=
[
"packaging"
,
"dependency"
,
"poetry"
]
# keywords = ["packaging", "poet"]
# A list of patterns that will be included in the final package.
include
=
[
'poetry/**/*'
,
'LICENSE'
]
#
# 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' }
# Features are sets of optional dependencies, which enhance a package,
# but are not required
# [features]
# markdown-readme = ["pypandoc"] # Adds support for markdown readmes
[dependencies]
[dependencies]
# Main dependencies of the project
# See https://github.com/sdispater/poet#dependencies-and-dev-dependencies
cleo
=
"^0.6"
cleo
=
"^0.6"
pendulum
=
"^1.3"
requests
=
"^2.18"
toml
=
"^0.9"
cachy
=
"^0.1.0"
[dev-dependencies]
[dev-dependencies]
# Development dependencies of the package
# See https://github.com/sdispater/poet#dependencies-and-dev-dependencies
pytest
=
"^3.3"
pytest
=
"^3.3"
# CLI scripts
[scripts]
#
poetry
=
'poetry:console.run'
# They must follow the following convention:
# {script_name} = "{my.package:executable}"
#
# [scripts]
# poet = 'poet:app.run'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment