-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (25 loc) · 676 Bytes
/
setup.py
File metadata and controls
31 lines (25 loc) · 676 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from plex import __version__
from setuptools import setup, find_packages
setup(
name='plex.py',
version=__version__,
license='MIT',
url='https://github.com/fuzeman/plex.py',
author='Dean Gardiner',
author_email='me@dgardiner.net',
description='Python interface for the Plex Media Server API',
packages=find_packages(exclude=[
'examples',
'tests'
]),
platforms='any',
install_requires=[
'requests'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python'
]
)