-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
40 lines (35 loc) · 1.29 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
36
37
38
39
40
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "youcube-server"
version = "1.0.0"
authors = [{ name = "Commandcracker" }]
description = "A server which provides a WebSocket API for YouCube clients"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["youtube", "youcube", "computercraft", "minecraft"]
license = { text = "GPL-3.0" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Sound/Audio :: Players",
]
# Required for pulling dependencies from requirements.txt
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://youcube.madefor.cc"
Repository = "https://github.com/CC-YouCube/server"
Documentation = "https://youcube.madefor.cc/guides/server/installation/"
[tool.setuptools.dynamic]
# Pull dependencies from requirements.txt
dependencies = { file = ["src/requirements.txt"] }
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = [
"youcube*",
] # package names should match these glob patterns (["*"] by default)
[tool.autopep8]
ignore = "E701"