-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
58 lines (50 loc) · 1.55 KB
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
56
57
58
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PySimaiParser"
version = "0.2.3"
authors = [
{ name = "Choimoe", email = "qwqshq@gmail.com" },
]
description = "A Python library and command-line tool to parse Simai chart files into JSON."
readme = "README.md"
requires-python = ">=3.7"
license = "MIT"
keywords = ["simai", "parser", "rhythm game", "maidata", "chart"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Games/Entertainment :: Arcade",
"Topic :: Text Processing",
]
dependencies = [
]
[project.optional-dependencies]
dev = [
"pytest",
"build",
"twine",
]
[project.urls]
"Homepage" = "https://github.com/Choimoe/PySimaiParser"
"Bug Tracker" = "https://github.com/Choimoe/PySimaiParser/issues"
[project.scripts]
pysimaiparser-cli = "SimaiParser.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["SimaiParser*"]
exclude = ["tests*", "SimaiParser.slide_calc.Assets*"]
namespaces = false
[tool.setuptools.package-data]
"SimaiParser.slide_calc" = ["Assets/*.json"]