-
Notifications
You must be signed in to change notification settings - Fork 61
/
setup.py
39 lines (32 loc) · 1013 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
36
37
38
39
import re
import subprocess
from distutils.core import setup
from pathlib import Path
from setuptools import find_packages
import server
def get_version() -> str:
output = subprocess.run(
[
"git", "--git-dir", Path(__file__).parent / ".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 "0.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
)