Skip to content

Commit 2f523c2

Browse files
committed
Update setup.py
1 parent ae53487 commit 2f523c2

1 file changed

Lines changed: 20 additions & 4 deletions

File tree

setup.py

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3-
from distutils.core import setup
3+
from setuptools import setup
44

55
"""
66
@author: python273
@@ -11,14 +11,30 @@
1111
"""
1212

1313

14+
version = '10.1'
15+
16+
with open('README.md') as f:
17+
long_description = f.read()
18+
1419
setup(
1520
name='vk_api',
16-
version='10.1',
21+
version=version,
22+
1723
author='python273',
1824
author_email='whoami@python273.pw',
25+
26+
description=(
27+
u'Python модуль для написания скриптов для социальной сети '
28+
u'Вконтакте (vk.com) (API wrapper)'
29+
),
30+
long_description=long_description,
31+
long_description_content_type='text/markdown',
32+
1933
url='https://github.com/python273/vk_api',
20-
description='Module for writing scripts for vk.com (vkontakte)',
21-
download_url='https://github.com/python273/vk_api/archive/master.zip',
34+
download_url='https://github.com/python273/vk_api/archive/v{}.zip'.format(
35+
version
36+
),
37+
2238
license='Apache License, Version 2.0, see LICENSE file',
2339

2440
packages=['vk_api', 'jconfig'],

0 commit comments

Comments
 (0)