forked from FAForever/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (28 loc) · 907 Bytes
/
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
import re
import subprocess
from distutils.core import setup
from setuptools import find_packages
import server
def get_version() -> str:
output = subprocess.run(
["git", "describe", "--tags"],
capture_output=True
).stdout.decode().strip().split("-")
# Output is either v1.3.5 if the tag points to the current commit or
# something like this v1.3.5-11-g3b467ad if it doesn't
version = ".".join(re.findall(r"\d+", output[0])) or "dev"
if len(output) > 1:
return f"{version}-{output[-1]}"
else:
return version
setup(
name="Forged Alliance Forever Server",
version=get_version(),
packages=["server"] + find_packages(),
url="http://www.faforever.com",
license=server.__license__,
author=server.__author__,
author_email=server.__contact__,
description="Lobby/game server project",
include_package_data=True
)