forked from Dinnerbone/mcstatus
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
38 lines (34 loc) · 1.04 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
from distutils.core import setup
import sys
PY2 = sys.version_info[0] == 2
install_requires = [
'six'
]
if PY2:
install_requires.append('dnspython')
else:
install_requires.append('dnspython3')
tests_require = [
'mock'
]
setup(
name='mcstatus',
version='2.2',
author='Nathan Adams',
author_email='[email protected]',
url='https://pypi.python.org/pypi/mcstatus',
packages=['mcstatus', 'mcstatus.protocol'],
description='A library to query Minecraft Servers for their status and capabilities.',
install_requires=install_requires,
tests_require=tests_require,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)