forked from pampersrocker/buildbot-UnrealEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (46 loc) · 1.56 KB
/
setup.py
File metadata and controls
52 lines (46 loc) · 1.56 KB
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
#!/usr/bin/env python
from setuptools import setup
long_description = """
buildbot-UnrealEngine
=====================
Documentation
-------------
See https://github.com/pampersrocker/buildbot-UnrealEngine for documentation.
"""
VERSION = "0.3.6"
setup(
name="buildbot_UnrealEngine",
version=VERSION,
description="Easy configuration for the Unreal Automation Tool",
long_description=long_description,
author="Marvin Pohl",
author_email="mp120@hdm-stuttgart.de",
url="https://github.com/pampersrocker/buildbot-UnrealEngine",
packages=[
"buildbot_UnrealEngine",
"buildbot_UnrealEngine.BuildTool",
"buildbot_UnrealEngine.AutomationTool",
"buildbot_UnrealEngine.UnrealCommand"
],
requires=["Buildbot (>=0.9.1)"],
entry_points={
'buildbot.steps': [
'BuildCookRun = buildbot_UnrealEngine.AutomationTool:BuildCookRun',
'UEBuild = buildbot_UnrealEngine.BuildTool:Build',
'UERebuild = buildbot_UnrealEngine.BuildTool:Rebuild',
'UEClean = buildbot_UnrealEngine.BuildTool:Clean',
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: C++",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Build Tools",
]
)