-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 825 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 825 Bytes
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
import os
from setuptools import setup, find_packages
setup(
name='freeradius_exporter',
version='1.1',
requires=['pyrad', 'prometheus_client'],
author='Semaphor',
author_email='info@semaphor.dk',
description='Prometheus exporter for FreeRADIUS statistics',
license='ISC',
keywords='prometheus freeradius radius',
url='https://github.com/semaphor-dk/freeradius_exporter',
packages=find_packages(),
include_package_data=True,
long_description=open('README.md').read(),
classifiers=[
'License :: OSI Approved :: ISC license'
],
scripts=['freeradius_exporter/freeradius_exporter.py'],
data_files=[
('/usr/local/share/freeradius_exporter',['dictionary.freeradius.pyrad']),
('/lib/systemd/system/', ['freeradius_exporter.service']),
]
)