-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from CC-YouCube/update
Update docker images, fixed docker nvidia opencl support, updated all requirements
- Loading branch information
Showing
20 changed files
with
924 additions
and
801 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.idea | ||
*.dfpwm | ||
*.32vid | ||
dictionary.dic | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,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" | ||
|
||
[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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.