-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
executable file
·32 lines (26 loc) · 992 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='0.4.1'
setup(
name='django-vkontakte-iframe',
version=version,
author='Mikhail Korobov',
author_email='[email protected]',
packages=['vk_iframe', 'vk_iframe.migrations'],
package_data={
'vk_iframe': ['templates/vk_iframe/default/403.html', 'fixtures/vk-geo.json']
},
url='https://bitbucket.org/kmike/django-vkontakte-iframe/',
license='MIT license',
description="Django app for developing vk.com (aka vkontakte.ru) iframe applications",
long_description = open('README.rst').read() + "\n\n"+ open('CHANGES.rst').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)