-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
executable file
·32 lines (30 loc) · 935 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='django-wordpress-auth',
version='0.1.31',
description='Django integration with WordPress authentication and roles / capabilities system.',
long_description=open('README.rst').read(),
include_package_data=True,
url='https://github.com/dellis23/django-wordpress-auth',
packages=[
'wordpress_auth',
],
install_requires=[
'Django',
'phpserialize==1.3'
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
]
)