python-plexapi/setup.py

42 lines
1 KiB
Python
Raw Normal View History

2014-12-29 03:21:58 +00:00
#!/usr/bin/python
# -*- coding: utf-8 -*-
2014-12-29 03:21:58 +00:00
"""
Install PlexAPI
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
2014-12-29 03:21:58 +00:00
from plexapi import const
# Get README.rst contents
readme = open('README.rst', 'r').read()
2022-05-16 20:39:42 +00:00
# Get requirements
requirements = []
with open('requirements.txt') as handle:
for line in handle.readlines():
if not line.startswith('#'):
package = line.strip().split('=', 1)[0]
requirements.append(package)
2014-12-29 03:21:58 +00:00
setup(
name='PlexAPI',
version=const.__version__,
2014-12-29 03:21:58 +00:00
description='Python bindings for the Plex API.',
author='Michael Shepanski',
author_email='michael.shepanski@gmail.com',
2017-08-12 03:58:08 +00:00
url='https://github.com/pkkid/python-plexapi',
packages=['plexapi'],
install_requires=requirements,
python_requires='>=3.7',
long_description=readme,
2014-12-29 03:21:58 +00:00
keywords=['plex', 'api'],
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
]
2014-12-29 03:21:58 +00:00
)