-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (33 loc) · 1.08 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
setup(
name='netjsonconfig_airos',
author='Edoardo Putti (edoput)',
author_email='edoardo.putti@gmail.com',
url='https://github.com/edoput/netjsonconfig-airos',
version='0.0.0',
description='airos compatible netjsonconfig backend',
packages=find_packages(exclude=['tests', ]),
entry_points={
'netjsonconfig.backends': [
'airos=netjsonconfig_airos.__init__:AirOs',
]
},
package_data={
'': ['schema/airos.json'],
},
keywords=[
'airos',
'netjsonconfig',
],
license='GPL3',
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: System :: Networking',
],
)