mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-10 22:24:12 +00:00
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:
commit
82df456f7a
1 changed files with 8 additions and 2 deletions
10
setup.py
10
setup.py
|
@ -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',
|
||||
]
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue