-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
46 lines (42 loc) · 1.51 KB
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
VERSION = "1.7.1"
setup(
name="buildbot_UnrealEngine",
version=VERSION,
description="Easy configuration for the Unreal Automation Tool",
long_description=long_description,
long_description_content_type="text/markdown",
author="Marvin Pohl",
author_email="[email protected]",
url="https://github.com/pampersrocker/buildbot-UnrealEngine",
packages=[
"buildbot_UnrealEngine",
"buildbot_UnrealEngine.BuildTool",
"buildbot_UnrealEngine.AutomationTool",
"buildbot_UnrealEngine.UnrealCommand"
],
requires=["Buildbot (>=2.2.0)"],
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 :: 5 - Production/Stable",
"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",
]
)