-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 800 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 800 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
[project]
name = "ass_tag_analyzer"
description = "Parse .ass tags."
authors = [
{ name = "moi15moi", email = "moi15moismokerlolilol@gmail.com" },
]
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",
"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__" }