-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (28 loc) · 775 Bytes
/
setup.py
File metadata and controls
36 lines (28 loc) · 775 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
32
33
34
35
36
#!/bin/env python
import sys
from setuptools import setup
VERSION = '0.5'
install_requires = [
'requests',
'pytz'
]
if sys.version_info < (3, 0):
install_requires.append("email")
setup(
name='kirrupt-tv',
version=VERSION,
description='A Python client for the Kirrupt TV API.',
install_requires=install_requires,
author='Kirrupt',
author_email='info@kirrupt.com',
url='https://github.com/kirrupt/kirrupt-tv-python-client',
license='MIT',
packages=['kirrupt_tv'],
package_data={'': []},
classifiers=(
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
),
)