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
|
#!/usr/bin/env python
from setuptools import setup, find_packages
import pyrad
setup(name='pyrad',
version=pyrad.__version__,
author='Istvan Ruzman, Christian Giese',
author_email='istvan@ruzman.eu, developer@gicnet.de',
url='https://github.com/pyradius/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.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'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', 'netaddr'],
tests_require='nose>=0.10.0b1',
test_suite='nose.collector',
)
|