-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
66 lines (62 loc) · 2.39 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#################################################################
# #
# Wilfred #
# Copyright (C) 2020-2022, Vilhelm Prytz, <vilhelm@prytznet.se> #
# #
# Licensed under the terms of the MIT license, see LICENSE. #
# https://github.com/wilfred-dev/wilfred #
# #
#################################################################
import sys
from setuptools import setup, find_packages
from wilfred.version import version
assert sys.version_info >= (3, 7, 0), "Wilfred requires Python 3.8+"
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="wilfred",
version=version,
author="Vilhelm Prytz",
author_email="vlhelm@prytznet.se",
description="A CLI for managing game servers using Docker.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://wilfredproject.org",
project_urls={
"Documentation": "https://docs.wilfredproject.org",
"Code": "https://github.com/wilfred-dev/wilfred",
"Issue tracker": "https://github.com/wilfred-dev/wilfred/issues",
},
packages=find_packages(),
license="MIT",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Natural Language :: English",
],
python_requires=">=3.8",
install_requires=[
"docker",
"click",
"colorama",
"appdirs",
"requests",
"tabulate",
"halo",
"sqlalchemy",
"pyyaml",
"pypiwin32 ; platform_system=='Windows'",
],
entry_points={"console_scripts": ["wilfred=wilfred.wilfred:main"]},
)