-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (34 loc) · 1.05 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
[tool.poetry]
name = "asciiplot"
version = "1.0.0"
description = "Platform-agnostic, highly customizable sequence plotting in the console"
authors = ["w2sv <[email protected]>"]
license = "MIT"
repository = "https://github.com/w2sv/asciiplot"
keywords=['plotting', 'terminal', 'console', 'ascii', 'gui', 'data', 'visualization', 'statistics', 'sequences']
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.6"
colored= "1.4.2"
dataclasses = "*"
more-itertools = "*"
[tool.poetry.dev-dependencies]
mypy = "*"
pytest = "*"
coverage = [ # https://github.com/nedbat/coveragepy/issues/1376#issuecomment-1284345273
{ extras = [
"toml",
], version = "^6.0", python = ">=3.6,<3.7" },
{ extras = [
"toml",
], version = ">=6.5", python = ">=3.7" },
]
types-dataclasses = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"