-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
34 lines (30 loc) · 996 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "kivy_matplotlib_widget"
dynamic = ["version"]
description = "A Matplotlib interactive widget for kivy"
authors = [
{ name="mp-007", email="[email protected]" },
{ name="T-Dynamos", email="[email protected]" },
]
readme = {file = 'README.md', content-type='text/markdown', charset="UTF-8", variant="GFM"}
requires-python = ">=3.7"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dependencies = [
"kivy>=2.0.0",
"matplotlib>=3.5.2"
]
keywords = ['android', 'python3', 'kivy', 'matplotlib']
[tool.setuptools.dynamic]
version = {attr = "kivy_matplotlib_widget.__init__.__version__"}
[tool.setuptools.package-data]
kivy_matplotlib_widget = ["fonts/*.ttf"]
[project.urls]
Homepage = "https://github.com/mp-007/kivy_matplotlib_widget"