-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (28 loc) · 1.03 KB
/
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
"""Setup for MythTV Services API"""
import os
from setuptools import setup
from mythtv_services_api._version import __version__
def read(readme_filename):
"""Exists to allow reading the README.md file"""
return open(os.path.join(os.path.dirname(__file__), readme_filename)).read()
setup(
name='mythtv_services_api',
py_modules=['send', 'utilities'],
packages=['mythtv_services_api'],
version=__version__,
license='GNU/GPLv3',
description='MythTV Services API tools.',
long_description=read('README.md'),
author='Bill Meek',
classifiers=[
# 3 - Alpha, 4 - Beta, 5 - Production/Stable
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
],
install_requires=['requests', 'future'],
url='https://www.mythtv.org/wiki/Python_API_Examples'
)
#requirements = ["zope.interface >= 3.6.0"],