-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
executable file
·44 lines (41 loc) · 1.18 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
#! /usr/bin/env python
"""Installation script."""
from setuptools import setup
with open("README.md") as file:
long_description = file.read()
setup(
name="mcipc",
use_scm_version=True,
setup_requires=["setuptools_scm"],
author="Richard Neumann",
author_email="mail@richard-neumann.de",
python_requires=">=3.9",
packages=[
"mcipc",
"mcipc.query",
"mcipc.query.proto",
"mcipc.rcon",
"mcipc.rcon.be",
"mcipc.rcon.be.commands",
"mcipc.rcon.commands",
"mcipc.rcon.ee",
"mcipc.rcon.ee.commands",
"mcipc.rcon.je",
"mcipc.rcon.je.commands",
"mcipc.rcon.response_types",
"mcipc.server",
],
install_requires=["rcon"],
entry_points={
"console_scripts": [
"mcstubsrv = mcipc.server.stubsrv:main",
"queryclt = mcipc.query.queryclt:main",
],
},
url="https://github.com/conqp/mcipc",
license="GPLv3",
description="A Minecraft server inter-process communication library.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="minecraft python server rcon query",
)