-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (25 loc) · 911 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
29
30
31
32
import setuptools
long_description = """# TVTime Wrapper
Simple class that allows the usage of TVTime via script with APIs.
## Usage
from tvtimewrapper import TVTimeWrapper
tvtime = TVTimeWrapper("username","password")
Full documentation available here: https://github.com/seanwlk/tvtimewrapper
"""
setuptools.setup(
name="tvtimewrapper",
version="0.0.3",
author="seanwlk",
author_email="seanwlk@my.com",
description="Python Wrapper library for TVTime App (formerly TV Show Time)",
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/seanwlk/tvtimewrapper",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)