-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (34 loc) · 1.01 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
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
VERSION='0.2.2'
setup(
name='django-iframetoolbox',
version='0.2.2',
description='Package for handling iframes and sessions.',
author='Django-iframetoolbox from bitbucket initially.',
author_email='klas79@gmail.com',
url='http://example.com',
packages=find_packages(),
include_package_data=True,
#zip_safe=False,
long_description="""\
The rain in spain stays mainly in a plain
""",
classifiers=[
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Internet",
],
keywords='internet session handling',
license='GPL',
install_requires=[
'setuptools',
'django >= 1.5'
],
)