mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-10 14:14:19 +00:00
37 lines
980 B
Python
37 lines
980 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Install PlexAPI
|
|
"""
|
|
import re
|
|
from distutils.core import setup
|
|
|
|
# Get the current version
|
|
with open('plexapi/__init__.py') as handle:
|
|
for line in handle.readlines():
|
|
if line.startswith('VERSION'):
|
|
version = re.findall("'([0-9\.]+?)'", line)[0]
|
|
|
|
# Get README.rst contents
|
|
readme = open('README.rst', 'r').read()
|
|
|
|
# Get requirments
|
|
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)
|
|
|
|
setup(
|
|
name='PlexAPI',
|
|
version=version,
|
|
description='Python bindings for the Plex API.',
|
|
author='Michael Shepanski',
|
|
author_email='michael.shepanski@gmail.com',
|
|
url='https://github.com/pkkid/python-plexapi',
|
|
packages=['plexapi'],
|
|
install_requires=requirements,
|
|
long_description=readme,
|
|
keywords=['plex', 'api'],
|
|
)
|