mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-10 06:04:15 +00:00
only include the plexapi package when running setup
This commit is contained in:
parent
35ea5ae18a
commit
313fef4de8
1 changed files with 1 additions and 2 deletions
3
setup.py
3
setup.py
|
@ -5,7 +5,6 @@ Install PlexAPI
|
|||
"""
|
||||
import re
|
||||
from distutils.core import setup
|
||||
from setuptools import find_packages
|
||||
|
||||
# Convert markdown readme to rst
|
||||
try:
|
||||
|
@ -29,7 +28,7 @@ setup(
|
|||
author='Michael Shepanski',
|
||||
author_email='mjs7231@gmail.com',
|
||||
url='https://github.com/mjs7231/plexapi',
|
||||
packages=find_packages(),
|
||||
packages=['plexapi'],
|
||||
install_requires=['requests'],
|
||||
long_description=read_md('README.md'),
|
||||
keywords=['plex', 'api'],
|
||||
|
|
Loading…
Reference in a new issue