-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (36 loc) · 1.31 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
"""
Copyright (c) 2017-2021 w-gao
"""
from os import path
from setuptools import setup, find_packages
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='mcquery',
version='0.1.0',
description='Query tool for Minecraft: Bedrock Edition servers.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/w-gao/py-mcpe-query',
author='w-gao',
author_email='[email protected]',
license='MIT',
package_dir={'': 'src'},
packages=find_packages(where='src'),
python_requires=">=3.6",
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking'
],
keywords='minecraft bedrock mcpe mcbe mcpeserver mcbeserver',
entry_points={
'console_scripts': [
'mcquery = mcquery.query:main',
]
})