-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
52 lines (48 loc) · 1.22 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "elm-doc"
version = "1.0.0"
description = "Generate static documentation for your Elm application"
license = "BSD-3-Clause"
authors = ["ento <ento+github@i.pearlwaffles.xyz>"]
readme = "README.md"
repository = "https://github.com/ento/elm-doc"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development :: Documentation"
]
packages = [
{ include = "elm_doc", from = "src" }
]
include = [
{ path = "assets.tar.gz" },
{ path = "tests", format = "sdist" },
{ path = "tox.ini", format = "sdist" },
{ path = ".travis.yml", format = "sdist" },
]
[tool.poetry.dependencies]
python = "^3.6"
attrs = "^19.3.0"
click = "^7.1.2"
doit = "^0.32.0"
parsy = "^1.3.0"
requests = "^2.24.0"
retrying = "^1.3.3"
cachecontrol = "^0.12.6"
[tool.poetry.dev-dependencies]
check-manifest = "^0.42"
pytest = "^5.4.3"
pytest-cov = "^2.10.0"
pytest-mock = "^3.2.0"
tox = "^3.16.1"
wheel = "^0.34.2"
codecov = "^2.1.8"
coverage = "^5.2"
virtualenv = "^20.0.27"
[tool.poetry.scripts]
elm-doc = "elm_doc.cli:main"
[build-system]
# should be in sync with shell.nix
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"