forked from alexmojaki/futurecoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (34 loc) · 823 Bytes
/
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
[tool.poetry]
name = "futurecoder"
version = "0.1.0"
description = ""
authors = ["Alex Hall <alex.mojaki@gmail.com>"]
package-mode = false
[tool.poetry.dependencies]
python = "3.12.1"
birdseye = {git = "https://github.com/alexmojaki/birdseye.git", branch = "futurecoder"}
snoop = "*"
asttokens = "*"
cheap_repr = "*"
littleutils = "*"
stack_data = "*"
executing = "*"
pure_eval = "*"
python-runner = "*"
markdown = "^3.1.1"
astcheck = "^0.2.5"
pyflakes = "^2.2.0"
BetterErrorMessages = "^0.4"
sentry-sdk = "*"
friendly-traceback = "*"
setuptools = "*"
[tool.poetry.dev-dependencies]
flake8 = {version = "^3.8.3", optional = true}
isort = "^5.1.4"
polib = "^1.1.1"
[tool.poetry.group.dev.dependencies]
pytest = "7.3.1"
selenium = "^4.24.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"