forked from replit/replit-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.25 KB
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
[tool.poetry]
name = "replit2"
version = "3.2.5"
description = "A library for interacting with features of repl.it"
authors = ["Repl.it <contact@repl.it>", "mat <pypi@matdoes.dev>", "kennethreitz <me@kennethreitz.org>", "Scoder12 <pypi@scoder12.ml>", "AllAwesome497", "python660", ]
license = "ISC"
readme = "README.md"
repository = "https://github.com/py660/repl.it"
homepage = "https://github.com/py660/repl.it"
documentation = "https://replit-py.readthedocs.org/"
[tool.poetry.dependencies]
python = "^3.8"
typing_extensions = "^3.7.4"
Flask = "^2.0.0"
Werkzeug = "^2.0.0"
aiohttp = "^3.6.2"
requests = "^2.25.1"
pyseto = "^1.6.11"
protobuf = "^4.21.8"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.3"
darglint = "^1.5.2"
flake8-bandit = "^2.1.2"
flake8-bugbear = "^20.1.4"
black = "^19.10b0"
flake8-black = "^0.2.1"
flake8-import-order = "^0.18.1"
flake8-annotations = "^2.3.0"
flake8-docstrings = "^1.5.0"
sphinx = "^3.1.2"
sphinx-autodoc-typehints = "^1.11.0"
sphinx-rtd-theme = "^0.5.0"
coverage = "^5.2.1"
mypy = "^0.782"
sphinx-autobuild = "^2020.9.1"
sphinx-click = "^2.7.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
replit = "replit.__main__:cli"
[tool.mypy]
exclude = [
"_pb2.py$", # Generated code
]