-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (42 loc) · 1.25 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
# -*- coding: utf-8 -*-
import setuptools
import sys
setuptools.setup(
name="OrzMC",
version="1.0.118",
description="A project for deployment of minecraft game.",
long_description=open('README.md', encoding = 'UTF-8').read(),
long_description_content_type="text/markdown",
author="王志舟<wangzhizhou>",
author_email="[email protected]",
maintainer='王志舟',
maintainer_email='[email protected]',
url="https://github.com/OrzGeeker/OrzMC.git",
packages=setuptools.find_packages(),
platforms = ['all'],
keywords='minecraft python',
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux"
],
python_requires='>=3, <4',
install_requires=[
'requests',
'twine',
'beautifulsoup4',
'pyyaml',
'tqdm',
'rich'
],
entry_points = {
'console_scripts': [
'orzmc = OrzMC:start',
'orzmc-rsync = OrzMC:rsync_server_core_data',
'orzmc-jdk = OrzMC:install_jdk',
'orzmc-jdk-remove = OrzMC:uninstall_jdk'
]
}
)