-
Notifications
You must be signed in to change notification settings - Fork 174
/
pyproject.toml
58 lines (54 loc) · 1.48 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[project]
name = "ue4-docker"
version = "0.0.115"
description = "Windows and Linux containers for Unreal Engine"
requires-python = ">= 3.7"
license = { file = "LICENSE" }
readme = "README.md"
authors = [
{ name = "Adam Rehn", email = "[email protected]" },
{ name = "Marat Radchenko", email = "[email protected]" },
]
keywords = [
"unreal engine",
"docker",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Build Tools",
]
dependencies = [
"colorama",
"docker>=6.1.0",
"humanfriendly",
"importlib-metadata>=1.0;python_version<'3.8'",
"Jinja2>=2.11.3",
"packaging>=19.1",
"psutil",
"termcolor",
]
# See https://packaging.python.org/en/latest/specifications/declaring-project-metadata/#urls
# See https://peps.python.org/pep-0753/#well-known-labels
[project.urls]
homepage = "https://github.com/adamrehn/ue4-docker"
documentation = "https://adamrehn.github.io/ue4-docker"
repository = "https://github.com/adamrehn/ue4-docker.git"
[project.scripts]
ue4-docker = "ue4docker:main"
[build-system]
requires = [
"setuptools>=61",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
ue4docker = [
"dockerfiles/*/*/.dockerignore",
"dockerfiles/diagnostics/*/*/*",
"dockerfiles/*/*/*",
"tests/*.py",
]