-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
35 lines (32 loc) · 1 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
[project]
name = "rpp"
dynamic = ["version"]
description = "Read and write Reaper RPP files with Python."
readme = "README.rst"
license = {text = "BSD-3-Clause"}
requires-python = ">= 3.7"
authors = [{name = "Sviatoslav Abakumov", email = "[email protected]"}]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"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",
"Topic :: Text Processing",
]
dependencies = [
"attrs",
"ply",
]
[project.urls]
"Source code" = "https://github.com/Perlence/rpp"
"Issue tracker" = "https://github.com/Perlence/rpp/issues"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "rpp.__version__"}