-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #107 from Dinnerbone/python-bump
Drop support for python 3.5
- Loading branch information
Showing
2 changed files
with
28 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
}, | ||
) |