-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (31 loc) · 867 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
32
33
34
35
36
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "rsbbs"
dynamic = ["version"]
authors = [
{ name="John Burwell", email="[email protected]" },
]
description = "A BBS for ax25d and packet radio that is really simple"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"platformdirs",
"PyYAML",
"SQLAlchemy",
]
[project.scripts]
rsbbs = "rsbbs.rsbbs:main"
[project.urls]
repository = "https://git.b-wells.us/jmbwell/rsbbs"
[tool.setuptools.package-data]
rsbbs = ["config_default.yaml","plugins/info/info_default.txt"]
[tool.setuptools.dynamic]
version = {attr = "rsbbs.__version__"}