forked from MCDReforged/MCDReforged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
79 lines (64 loc) · 2.38 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
67
68
69
70
71
72
73
74
75
76
77
78
79
import os
from setuptools import find_packages, setup
from mcdreforged.constants import core_constant
# === cheatsheet ===
# rm -rf build/ dist/ mcdreforged.egg-info/
# python setup.py sdist bdist_wheel
# python -m twine upload --repository testpypi dist/*
# python -m twine upload dist/*
# -------------------------------- Basics --------------------------------
NAME = core_constant.PACKAGE_NAME
VERSION = core_constant.VERSION_PYPI
DESCRIPTION = 'A rewritten version of MCDaemon, a python script to control your Minecraft server'
PROJECT_URLS = {
'Homepage': core_constant.GITHUB_URL,
'Documentation': core_constant.DOCUMENTATION_URL,
}
AUTHOR = 'Fallen_Breath'
REQUIRES_PYTHON = '>=3.8'
CLASSIFIERS = [
# https://pypi.org/classifiers/
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
ENTRY_POINTS = {
'console_scripts': [
'{} = {}.cli.cli_entry:entry_point'.format(core_constant.CLI_COMMAND, core_constant.PACKAGE_NAME)
]
}
print('ENTRY_POINTS = {}'.format(ENTRY_POINTS))
# github action environment
if os.getenv('CI', None) is not None:
build_num = os.getenv('GITHUB_RUN_NUMBER')
is_release = os.getenv('GITHUB_REF', '').startswith('refs/tags/v')
if build_num is not None and not is_release:
VERSION += '.dev{}'.format(build_num)
# -------------------------------- Files --------------------------------
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'requirements.txt')) as f:
REQUIRED = list(filter(None, map(str.strip, f)))
print('REQUIRED = {}'.format(REQUIRED))
with open(os.path.join(here, 'README.md'), encoding='utf8') as f:
LONG_DESCRIPTION = f.read()
# -------------------------------- Setup --------------------------------
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author=AUTHOR,
python_requires=REQUIRES_PYTHON,
project_urls=PROJECT_URLS,
packages=find_packages(exclude=['tests', '*.tests', '*.tests.*', 'tests.*']),
include_package_data=True,
install_requires=REQUIRED,
classifiers=CLASSIFIERS,
entry_points=ENTRY_POINTS,
)