forked from voidfiles/django-rpx
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
executable file
·29 lines (26 loc) · 1020 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django_rpx_plus',
#We exclude example app from installing since that may interfere from
#someone testing out their own example app of the same name. I got
#bit by this :). We also put django_rpx/ inside of a src/ dir so that
#installations using 'setup.py develop' don't install example/ (since
#'setup.py develop' ignores exclude).
packages=find_packages('src', exclude=['example', 'example.*']),
package_dir={'' : 'src'},
include_package_data=True,
version='1.0.0',
description='RPX auth support for django',
author='Michael Huynh',
author_email='[email protected]',
license="BSD",
keywords="janrain django rpx rpxnow",
url='http://github.com/mikexstudios/django-rpx-plus',
install_requires=['django-picklefield'],
classifiers=[
'Programming Language :: Python',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
]
)