forked from ramusus/kinopoiskpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·34 lines (33 loc) · 1.07 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
from setuptools import setup, find_packages
setup(
name='kinopoiskpy',
version=__import__('kinopoisk').__version__,
description='Python API to kinopoisk.ru',
long_description=open('README.md').read(),
author='ramusus',
author_email='[email protected]',
url='https://github.com/ramusus/kinopoiskpy',
download_url='http://pypi.python.org/pypi/kinopoiskpy',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False, # because we're including media that Django needs
install_requires=[
'beautifulsoup4',
'lxml',
'requests',
'simplejson',
'python-dateutil',
'future',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
test_suite='kinopoisk.tests',
)