-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.13 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
BASE = os.path.dirname(__file__)
README_PATH = os.path.join(BASE, 'README.rst')
CHANGES_PATH = os.path.join(BASE, 'CHANGES.rst')
long_description = '\n\n'.join((
open(README_PATH).read(),
open(CHANGES_PATH).read(),
))
setup(
name='django-mediawiki-auth',
version='0.0.2',
url='https://github.com/damoti/django-mediawiki-auth',
license='BSD',
description='Django uses MediaWiki session to seamlessly authenticate users.',
long_description=long_description,
author='Lex Berezhny',
author_email='[email protected]',
keywords='django,mediawiki,wiki,wikipedia,php,session,auth',
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages(exclude=('mediawiki_auth.tests',)),
install_requires=[
'phpserialize',
],
include_package_data=True
)