-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 890 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='easytmdb',
version='0.2.0',
author='Tómas Þór Jónsson',
author_email='[email protected]',
description='A Python wrapper for The Movie Database API v3',
keywords=['movie', 'the movie database', 'movie database', 'tmdb',
'wrapper', 'api'],
url='https://github.com/benregn/easytmdb',
packages=['easytmdb'],
long_description=read('README.rst'),
install_requires=['requests>=0.11.1'],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
],
)