forked from robgolding/django-radius
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 657 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 657 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
from radiusauth import VERSION
setup(
name='django-radius',
author='Rob Golding',
author_email='rob@robgolding.com',
description='Django authentication backend for RADIUS',
version=VERSION,
license='BSD',
url='http://robgolding63.github.com/django-radius/',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
],
zip_safe=False,
packages=find_packages(),
install_requires=['pyrad >= 1.2'],
)