-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
34 lines (31 loc) · 1.08 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
import os
from setuptools import setup, find_packages
def read(fname):
# read the contents of a text file
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='mockdjangosaml2',
version='0.16.0',
url='http://github.com/darbula/mockdjangosaml2',
author='Damir Arbula',
author_email='[email protected]',
description='Django application that mocks functionality of djangosaml2 app for testing and development purposes.',
license='BSD',
platforms=['Windows', 'Linux', 'Mac OSX'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Security',
],
packages=find_packages(),
include_package_data=True,
install_requires=[
'Django>=1.4',
],
long_description=read('README.rst'),
)