-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (40 loc) · 1.82 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
33
34
35
36
37
38
39
40
41
42
43
"""A setuptools based setup module.
See:
https://packaging.python.org/guides/distributing-packages-using-setuptools/
https://github.com/santhoshse7en/imdby
"""
# -*- encoding: utf-8 -*-
from __future__ import absolute_import, print_function
# Always prefer setuptools over distutils
from distutils.core import setup
from setuptools import find_packages
keywords = ['imdby', 'imdb', 'movie', 'people', 'database', 'cinema', 'film', 'person',
'cast', 'actor', 'actress', 'director', 'sql', 'character', 'critics', 'users',
'company', 'package', 'plain text data files', 'event', 'news', 'character',
'keywords', 'top250', 'bottom100', 'xml', 'bs4', 'lxml', 'upcoming']
setup(
name="imdby",
version="0.1.6",
python_requires='>=3.5',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author="M Santhosh Kumar",
author_email="[email protected]",
description="Python package to access the IMDb's database",
url="https://github.com/santhoshse7en/imdby",
platforms='any',
keywords=keywords,
install_requires=['beautifulsoup4', 'pandas', 'selenium',
'vaderSentiment', 'textblob', 'chromedriver-binary', 'unidecode'],
packages=find_packages(),
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Communications :: Email',
'Topic :: Office/Business',
'Topic :: Software Development :: Bug Tracking',
],)