forked from MCDReforged/MCDReforged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (51 loc) · 1.93 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
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/*
NAME = core_constant.PACKAGE_NAME
VERSION = core_constant.VERSION_PYPI
DESCRIPTION = 'A rewritten version of MCDaemon, a python script to control your Minecraft server'
URL = 'https://github.com/Fallen-Breath/MCDReforged'
AUTHOR = 'Fallen_Breath'
REQUIRES_PYTHON = '>=3.6.0'
CLASSIFIERS = [
# https://pypi.org/classifiers/
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent'
]
if os.getenv('CI', None) is not None:
build_num = os.getenv('GITHUB_RUN_NUMBER', None)
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)
# ----------------------------------------------------------------
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'requirements.txt')) as f:
REQUIRED = [line for line in f.readlines() if not len(line.strip()) == 0]
print('REQUIRED = {}'.format(REQUIRED))
with open(os.path.join(here, 'README.md'), encoding='utf8') as f:
LONG_DESCRIPTION = f.read()
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author=AUTHOR,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=find_packages(exclude=['tests', '*.tests', '*.tests.*', 'tests.*']),
install_requires=REQUIRED,
include_package_data=True,
classifiers=CLASSIFIERS,
)