Skip to content

Commit

Permalink
Merge pull request #107 from Dinnerbone/python-bump
Browse files Browse the repository at this point in the history
Drop support for python 3.5
  • Loading branch information
kevinkjt2000 authored Jan 18, 2021
2 parents c2fb996 + 7217a72 commit cce0edd
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 32 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
language: python
python:
- 3.5
- 3.6
- 3.7
- 3.8
- 3.9
install:
- pip install --upgrade pip
- pip install -r test-requirements.txt
Expand Down
58 changes: 27 additions & 31 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,48 +1,44 @@
from setuptools import setup

# TODO: read requirements from file
install_requires = [
'click', 'dnspython3', 'six'
]
install_requires = ["click", "dnspython3", "six"]

tests_require = [
'mock', 'nose'
]
tests_require = ["mock", "nose"]

setup(
name='mcstatus',
version='4.1.0',
author='Nathan Adams',
author_email='[email protected]',
url='https://pypi.python.org/pypi/mcstatus',
packages=['mcstatus', 'mcstatus.protocol', 'mcstatus.scripts'],
description='A library to query Minecraft Servers for their status and capabilities.',
name="mcstatus",
version="5.0.0",
author="Nathan Adams",
author_email="[email protected]",
url="https://pypi.python.org/pypi/mcstatus",
packages=["mcstatus", "mcstatus.protocol", "mcstatus.scripts"],
description="A library to query Minecraft Servers for their status and capabilities.",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
install_requires=install_requires,
tests_require=tests_require,
python_requires=">=3.5",
python_requires=">=3.6",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Games/Entertainment',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Monitoring',
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"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",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Monitoring",
],
entry_points='''
entry_points="""
[console_scripts]
mcstatus=mcstatus.scripts.mcstatus:cli
''',
""",
project_urls={
'Source': 'https://github.com/Dinnerbone/mcstatus',
"Source": "https://github.com/Dinnerbone/mcstatus",
},
)

0 comments on commit cce0edd

Please sign in to comment.