-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
executable file
·32 lines (30 loc) · 1017 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
#!/usr/bin/env python
from distutils.core import setup
version = '1.3.5'
setup(
name='vkontakte',
version=version,
author='Mikhail Korobov',
author_email='[email protected]',
packages=['vkontakte'],
url='http://bitbucket.org/kmike/vkontakte/',
license='MIT license',
description="vk.com (aka vkontakte.ru) API wrapper",
long_description=open('README.rst').read() + open('CHANGES.rst').read(),
install_requires=[
'six',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)