forked from mezz64/pyTVHeadend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·27 lines (23 loc) · 842 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
# Copyright (c) 2017-2018 John Mihalic <https://github.com/mezz64>
# Licensed under the MIT license.
# Used this guide to create module
# http://peterdowns.com/posts/first-time-with-pypi.html
# git tag 0.1 -m "0.1 release"
# git push --tags origin master
#
# Upload to PyPI Live
# python setup.py register -r pypi
# python setup.py sdist upload -r pypi
from distutils.core import setup
setup(
name='pyTVHeadend',
packages=['pytvheadend'],
version='0.0.2',
description='Provides a python api to interact with a TVHeadend server.',
author='John Mihalic',
author_email='[email protected]',
url='https://github.com/mezz64/pyTVHeadend',
download_url='https://github.com/mezz64/pytvheadend/tarball/0.0.2',
keywords=['tv', 'tvheadend', 'api wrapper', 'homeassistant'],
classifiers=[],
)