-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.4 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ccanvas"
version = "1.5.1"
description = "Matplotlib-based canvas that allows line drawing and coordinate retrieval"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11.6"
authors = [{ name = "Paulo Sanchez", email = "[email protected]" }]
maintainers = [{ name = "Paulo Sanchez", email = "[email protected]" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
]
dependencies = [
"bidimensional>=1.9.1",
"click>=8.1.7",
"colorama>=0.4.6",
"matplotlib>=3.8.2",
]
[project.optional-dependencies]
test = [
"pytest==7.4.3",
"pytest-cov==4.1.0",
"pytest-html==4.1.1",
"pycodestyle==2.11.1",
"pydocstyle==6.3.0",
"mypy==1.7.0",
"flake8==6.1.0",
]
[project.urls]
"Homepage" = "https://github.com/erlete/coordinate-canvas"
"Bug Tracker" = "https://github.com/erlete/coordinate-canvas/issues"