-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpyproject.toml
55 lines (51 loc) · 1.44 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "supernotelib"
description = "An unofficial converter library for Ratta Supernote"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.6"
keywords = [
"supernote",
]
authors = [
{ name = "jya", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Utilities",
]
dependencies = [
"colour>=0.1.5",
"fusepy>=3.0.1",
"numpy>=1.19.0",
"Pillow>=7.2.0",
"potracer>=0.0.1",
"pypng>=0.0.20",
"reportlab>=3.6.1",
"svglib>=1.1.0",
"svgwrite>=1.4",
]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/jya-dev/supernote-tool"
[project.scripts]
supernote-tool = "supernotelib.cmds.supernote_tool:main"
supernote-fuse = "supernotelib.cmds.supernote_fuse:main"
[tool.hatch.version]
path = "supernotelib/__init__.py"