File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
1111"""
1212
1313
14+ version = '10.1'
15+
16+ with open ('README.md' ) as f :
17+ long_description = f .read ()
18+
1419setup (
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' ],
You can’t perform that action at this time.
0 commit comments