-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
40 lines (31 loc) · 974 Bytes
/
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
from setuptools import setup
import sys
PY_VERSION = sys.version_info.major, sys.version_info.minor
install_requires = [
'six>=1.13.0',
'requests>=2.8.1',
'beautifulsoup4>=4.4.1']
with open('README.md') as f:
readme = f.read()
setup(
name='vk-requests',
version='1.2.1',
packages=['vk_requests'],
url='https://github.com/prawn-cake/vk-requests',
license='MIT',
author='Maksim Ekimovskii',
author_email='ekimovsky.maksim@gmail.com',
description='vk.com requests for humans. API library for vk.com',
long_description=readme,
install_requires=install_requires,
extras_require={
'streaming:python_version>="3.4"': ['websockets']
},
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)