-
Notifications
You must be signed in to change notification settings - Fork 186
/
setup.py
35 lines (32 loc) · 1.28 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
35
#!/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 :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'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,
tests_require='nose>=0.10.0b1',
test_suite='nose.collector',
)