-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
63 lines (54 loc) · 1.7 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "plotille"
version = "5.1.0"
description = "Plot in the terminal using braille dots."
authors = ["Tammo Ippen <tammo.ippen@posteo.de>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tammoippen/plotille"
homepage = "https://github.com/tammoippen/plotille"
keywords = ['plot', 'scatter', 'histogram', 'terminal', 'braille', 'unicode', 'timeseries']
classifiers = [
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Terminals'
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
flake8 = "^5"
flake8-bugbear = "^22"
flake8-commas = "^2"
flake8-comprehensions = "^3"
flake8-import-order = "^0.18"
flake8-pep3101 = "^1"
flake8-polyfill = "^1"
flake8-quotes = "^3"
mock = "^3"
numpy = [
{ version = "1.24.4", python = "~3.8" },
{ version = "^1", python = "^3.9" },
]
pendulum = [
{ version = "^2", python = "<3.12" },
{ version = "^3", python = "^3.12" },
]
pep8-naming = "^0.11"
Pillow = "^9"
pytest = "^6"
pytest-cov = "^3"
pytest-mock = "^2"
pytest-pythonpath = "^0.7.3"