-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (25 loc) · 865 Bytes
/
setup.py
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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
VERSION="0.0.6"
setup(
name='plexauth',
version=VERSION,
description='Handles the authorization flow to obtain tokens from Plex.tv via external redirection.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/jjlawren/python-plexauth/',
license='MIT',
author='Jason Lawrence',
author_email='[email protected]',
platforms='any',
py_modules=['plexauth'],
install_requires=['aiohttp'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)