Skip to content

Commit e98524f

Browse files
committed
Update version to 6.0
1 parent 33ce812 commit e98524f

2 files changed

Lines changed: 11 additions & 8 deletions

File tree

setup.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,22 @@
66
@contact: http://vk.com/python273
77
@license Apache License, Version 2.0, see LICENSE file
88
9-
Copyright (C) 2014
9+
Copyright (C) 2015
1010
'''
1111

1212
from distutils.core import setup
13+
14+
1315
setup(
1416
name='vk_api',
15-
version='5.2',
17+
version='6.0',
1618
author='Kirill Python',
17-
author_email='siberianpython@gmail.com',
19+
author_email='python273@ya.ru',
1820
url='https://github.com/python273/vk_api',
19-
description='Module to use API vk.com',
21+
description='Module for writing scripts for vk.com (vkontakte)',
2022
download_url='https://github.com/python273/vk_api/archive/master.zip',
2123
license='Apache License, Version 2.0, see LICENSE file',
2224

2325
packages=['vk_api', 'jconfig'],
26+
install_requires=['requests'],
2427
)

vk_api/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
"""
44
@author: Kirill Python
5-
@contact: http://vk.com/python273
5+
@contact: https://vk.com/python273
66
@license Apache License, Version 2.0, see LICENSE file
77
8-
Copyright (C) 2014
8+
Copyright (C) 2015
99
"""
1010

1111
__author__ = 'Kirill Python'
12-
__version__ = '5.2'
13-
__email__ = 'siberianpython@gmail.com'
12+
__version__ = '6.0'
13+
__email__ = 'python273@ya.ru'
1414
__contact__ = 'https://vk.com/python273'
1515

1616
import sys

0 commit comments

Comments
 (0)