-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
49 lines (42 loc) · 1.15 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
[tool.poetry]
name = "almanac"
version = "0.1.0"
description = "A framework for building interactive, page-based applications"
authors = ["Brian Welch"]
license = "MIT"
readme = "README.md"
include = [
"LICENSE.txt",
]
homepage = "https://almanac.brianwel.ch"
repository = "https://github.com/welchbj/almanac"
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.9"
munch = "^2.5.0"
Pygments = "^2.11.1"
pyparsing = "^3.0.6"
prompt-toolkit = "^3.0.24"
sphinx = {version = "^3", optional = true}
typing-inspect = "^0.7.1"
[tool.poetry.extras]
docs = ["sphinx"]
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
mypy = "^0.930"
pytest = "^6.2.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"