Merge pull request #526 from andy-maier/andy/add-python-versions

Fixes #525: Added package metadata for supported Python versions
This commit is contained in:
Steffen Fredriksen 2020-08-02 16:12:28 +02:00 committed by GitHub
commit 82df456f7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,10 @@
Install PlexAPI
"""
import re
from distutils.core import setup
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# Get the current version
with open('plexapi/__init__.py') as handle:
@ -32,9 +35,12 @@ setup(
url='https://github.com/pkkid/python-plexapi',
packages=['plexapi'],
install_requires=requirements,
python_requires='>=3.5',
long_description=readme,
keywords=['plex', 'api'],
classifiers=[
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
]
)