-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 936 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 936 Bytes
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
[project]
name = "jupad"
description = "Python Notepad"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
keywords = ["development"]
authors = [
{name = "Idan Pazi", email = "idan.kp@gmail.com" }
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"ipython",
"qtconsole",
"PyQt6",
"ansi2html",
]
[project.urls]
"Homepage" = "https://github.com/idanpa/jupad"
"Bug Reports" = "https://github.com/idanpa/jupad/issues"
"Source" = "https://github.com/idanpa/jupad"
[project.gui-scripts]
jupad = "jupad.__main__:main"
[tool.setuptools]
packages = ["jupad"]
package-data = {"*" = ["resources/*.svg"]}
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "jupad/_version.py"