forked from pyradius/pyrad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·34 lines (29 loc) · 1.04 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
#!/usr/bin/python
from setuptools import setup, find_packages
version = '2.0'
setup(name='pyrad',
version=version,
author='Wichert Akkerman',
author_email='[email protected]',
url='https://github.com/wichert/pyrad',
license='BSD',
description='RADIUS tools',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Systems Administration :: Authentication/Directory',
],
packages=find_packages(exclude=['tests']),
keywords=['radius', 'authentication'],
zip_safe=True,
include_package_data=True,
install_requires=['six'],
tests_require='nose>=0.10.0b1',
test_suite='nose.collector',
)