-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
37 lines (30 loc) · 928 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
37
[build-system]
requires = ["setuptools", "setuptools-scm"]
#build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["unreal_script_editor"]
[project]
name = "unreal-script-editor"
authors = [
{name = "Lei Xingyu"},
{name = "Hannes Delbeke"},
]
description = "A Qt Python script editor, styled in Unreal stylesheet"
readme = "README.md"
requires-python = ">=3.4"
keywords = ["unreal", "scripter"]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3.7",
]
#dynamic = ["dependencies"]
dependencies = ['importlib-metadata; python_version<"3.7"', "unreal-stylesheet", "PySide6"]
#dynamic = ["version"]
version = "0.0.3"
#[project.optional-dependencies]
#yaml = ["pyyaml"]
#[project.scripts]
#my-script = "my_package.module:function"
[project.urls]
Homepage = "https://github.com/leixingyu/unrealScriptEditor"
Source = "https://github.com/leixingyu/unrealScriptEditor"