We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 557cbce commit 395bbd2Copy full SHA for 395bbd2
pyproject.toml
@@ -0,0 +1,26 @@
1
+[build-system]
2
+requires = ["hatchling"]
3
+build-backend = "hatchling.build"
4
+
5
+[project]
6
+name = "dmconvert"
7
+version = "0.0.1"
8
+authors = [
9
+ { name="timerring"},
10
+]
11
+description = "The Python toolkit package and cli designed for converting xml danmaku to ass."
12
+readme = "README.md"
13
+license = { file="LICENSE" }
14
+requires-python = ">=3.6"
15
+classifiers = [
16
+ "Programming Language :: Python :: 3",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Operating System :: OS Independent",
19
20
+dependencies = []
21
22
+[project.scripts]
23
+dmconvert = "dmconvert.cli:cli"
24
25
+[project.urls]
26
+"Homepage" = "https://github.com/timerring/DanmakuConvert"
0 commit comments