forked from python273/vk_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (49 loc) · 1.75 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from io import open
from setuptools import setup
"""
:authors: python273
:license: Apache License, Version 2.0, see LICENSE file
:copyright: (c) 2019 python273
"""
version = '11.5.1'
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='vk_api',
version=version,
author='python273',
author_email='[email protected]',
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',
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'],
install_requires=['requests', 'enum34;python_version<"3.4"', 'six'],
extras_require={
'vkstreaming': ['websocket-client'],
'vkaudio': ['beautifulsoup4'],
},
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',
]
)