-
Notifications
You must be signed in to change notification settings - Fork 179
/
pyproject.toml
46 lines (42 loc) · 1.19 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
[tool.poetry]
name = "proselint"
version = "0.14.0"
description = "A linter for prose."
license = "BSD-3-Clause"
authors = ["Amperser Labs <[email protected]>"]
readme = "README.md"
homepage = "https://proselint.com"
repository = "https://github.com/amperser/proselint"
classifiers = ["Programming Language :: Python :: Implementation :: CPython"]
include = ["proselint/", "tests/", "proselint/demo.md"]
exclude = ["tests/.gitignore"]
[tool.poetry.dependencies]
python = "^3.8.1"
click = "^8.0.0"
importlib-resources = { version = "^6.0", python = "<3.9" }
[tool.poetry.group.dev.dependencies]
gmail = { git = "https://github.com/charlierguo/gmail.git" }
APScheduler = ">=3.5.3"
bumpversion = ">=0.5.3"
coverage = "^6.1"
Flask-API = ">=1.0"
Flask-Cors = ">=3.0.4"
Flask = ">=1.1.4"
Flask-Limiter = ">=1.0.1"
gunicorn = ">=19.8.1"
mock = ">=2.0.0"
pytest = "^7.4.0"
redis = ">=2.10.6"
requests = ">=2.19.1"
rq = ">=0.12.0"
pydocstyle = "^6.3.0"
twine = "^3.5.0"
flake8 = "^6.1.0"
flake8-bugbear = "^23.7.10"
flake8-import-order = "^0.18.2"
isort = "^5.12.0"
[tool.poetry.scripts]
proselint = "proselint.command_line:proselint"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"