-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (28 loc) · 948 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
[project]
name = "ass_tag_analyzer"
description = "Parse .ass tags."
authors = [
{ name = "moi15moi", email = "[email protected]" },
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.8"
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Other Audience",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
]
dynamic = ["version"]
[project.urls]
Source = "https://github.com/moi15moi/ass_tag_analyzer/"
Tracker = "https://github.com/moi15moi/ass_tag_analyzer/issues/"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = { attr = "ass_tag_analyzer.__init__.__version__" }