-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 746 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (21 loc) · 746 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
from setuptools import setup, find_packages
setup(
name = 'pytvmaze',
version = '2.0.8',
description = 'Python interface to the TV Maze API (www.tvmaze.com)',
url = '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/srob650/pytvmaze',
author = 'Spencer Roberts',
author_email = 'pytvmaze@gmail.com',
license='MIT',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5'
],
keywords = 'python tv television tvmaze',
packages=['pytvmaze'],
install_requires=['requests']
)