-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (44 loc) · 1.17 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
[tool.poetry]
name = "waterloo"
version = "0.7.10"
license = 'MIT'
description = "Tool to convert 'typed docstrings' (i.e. Sphinx 'Napoleon' format) to PEP-484 Py2 type comments."
authors = ["Anentropic <[email protected]>"]
homepage = 'https://github.com/anentropic/python-waterloo'
readme = "README.md"
include = [
"waterloo/py.typed"
]
packages = [
{ include = "waterloo" },
{ include = "bowler" },
]
[tool.poetry.dependencies]
python = ">=3.7,<3.9"
regex = "^2020.2.20"
fissix = {version = "^19.2b1", allow-prereleases = true}
typing-extensions = "^3.7.4"
toml = "^0.10.0"
megaparsy = "^0.1.4"
typesystem = "^0.2.4"
prompt-toolkit = "^3.0.3"
pydantic = "^1.6.1"
parso = "^0.7.0,<0.8.0"
inject = "^4.3.1"
structlog = "^20.1.0"
colorama = "^0.4.3"
# (We had to vendor our fork of Bowler into this package)
# bowler = {file = "https://github.com/anentropic/Bowler/tarball/0.8.0-post2"}
# Bowler deps:
attrs = "^20.1.0"
click = "^7.1.2"
moreorless = "^0.3.0"
[tool.poetry.dev-dependencies]
pytest = "^5.3.5"
hypothesis = "^5.5.4"
pytype = "^2020.8.17"
[tool.poetry.scripts]
waterloo = "waterloo.cli:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"