-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
35 lines (31 loc) · 869 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "textalloc"
version = "1.1.7"
authors = [
{ name="Christoffer Kjellson", email="[email protected]" },
]
license = {text = "MIT License"}
description = "Efficient Text Allocation in matplotlib using NumPy Broadcasting"
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'tqdm; python_version>"3.6"',
'numpy',
'matplotlib',
]
[project.urls]
"Homepage" = "https://github.com/ckjellson/textalloc"
"Bug Tracker" = "https://github.com/ckjellson/textalloc/issues"
[tool.setuptools]
packages = ["textalloc"]
package-dir = {"" = "src"}
[tool.setuptools.package-data]
textalloc = ["py.typed"]