1{
2    "tool": {
3        "poetry": {
4            "name": "poetry",
5            "version": "0.11.2",
6            "description": "Python dependency management and packaging made easy.",
7            "authors": [
8                "S\u00e9bastien Eustace <sebastien@eustace.io>"
9            ],
10            "license": "MIT",
11            "readme": "README.md",
12            "homepage": "https://poetry.eustace.io/",
13            "repository": "https://github.com/sdispater/poet",
14            "documentation": "https://poetry.eustace.io/docs",
15            "keywords": [
16                "packaging",
17                "dependency",
18                "poetry"
19            ],
20            "classifiers": [
21                "Topic :: Software Development :: Build Tools",
22                "Topic :: Software Development :: Libraries :: Python Modules"
23            ],
24            "dependencies": {
25                "python": "~2.7 || ^3.4",
26                "cleo": "^0.6.7",
27                "pytoml": "^0.1.16",
28                "requests": "^2.18",
29                "cachy": "^0.2",
30                "requests-toolbelt": "^0.8.0",
31                "jsonschema": "^2.6",
32                "pyrsistent": "^0.14.2",
33                "pyparsing": "^2.2",
34                "cachecontrol": {
35                    "version": "^0.12.4",
36                    "extras": [
37                        "filecache"
38                    ]
39                },
40                "pkginfo": "^1.4",
41                "html5lib": "^1.0",
42                "shellingham": "^1.1",
43                "typing": {
44                    "version": "^3.6",
45                    "python": "~2.7 || ~3.4"
46                },
47                "pathlib2": {
48                    "version": "^2.3",
49                    "python": "~2.7 || ~3.4"
50                },
51                "virtualenv": {
52                    "version": "^16.0",
53                    "python": "~2.7"
54                }
55            },
56            "dev-dependencies": {
57                "pytest": "^3.4",
58                "pytest-cov": "^2.5",
59                "mkdocs": "^0.17.3",
60                "pymdown-extensions": "^4.9",
61                "pygments": "^2.2",
62                "pytest-mock": "^1.9",
63                "pygments-github-lexers": "^0.0.5",
64                "black": {
65                    "version": "^18.3-alpha.0",
66                    "python": "^3.6"
67                },
68                "pre-commit": "^1.10",
69                "tox": "^3.0"
70            },
71            "scripts": {
72                "poetry": "poetry.console:main"
73            }
74        },
75        "black": {
76            "line-length": 88,
77            "py36": true,
78            "include": "\\.pyi?$",
79            "exclude": "/(\n    \\.git\n  | \\.hg\n  | \\.mypy_cache\n  | \\.tox\n  | \\.venv\n  | _build\n  | build\n  | dist\n  | tests/toml-test\n)/\n"
80        },
81        "foo": [
82            {
83                "name": "first"
84            },
85            {
86                "name": "second"
87            },
88            {
89                "name": "third"
90            },
91            {
92                "name": "fourth"
93            }
94        ],
95        "bar": [
96            {
97                "foo": "bar"
98            }
99        ]
100    },
101    "build-system": {
102        "requires": [
103            "poetry-core>=1.0.0a3"
104        ],
105        "build-backend": "poetry.core.masonry.api"
106    }
107}
108