Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
python273 committed May 15, 2018
1 parent ae53487 commit 2f523c2
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import setup

"""
@author: python273
Expand All @@ -11,14 +11,30 @@
"""


version = '10.1'

with open('README.md') as f:
long_description = f.read()

setup(
name='vk_api',
version='10.1',
version=version,

author='python273',
author_email='whoami@python273.pw',

description=(
u'Python модуль для написания скриптов для социальной сети '
u'Вконтакте (vk.com) (API wrapper)'
),
long_description=long_description,
long_description_content_type='text/markdown',

url='https://github.com/python273/vk_api',
description='Module for writing scripts for vk.com (vkontakte)',
download_url='https://github.com/python273/vk_api/archive/master.zip',
download_url='https://github.com/python273/vk_api/archive/v{}.zip'.format(
version
),

license='Apache License, Version 2.0, see LICENSE file',

packages=['vk_api', 'jconfig'],
Expand Down

0 comments on commit 2f523c2

Please sign in to comment.