-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (30 loc) · 1.01 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
#!/usr/bin/env python3
from setuptools import setup # type: ignore
setup(name='pppoe',
version='0.1',
description='PPPoE to serial PPP bridge',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License '
'v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: System :: Networking',
'Intended Audience :: System Administrators',
'Operating System :: POSIX :: Linux',
'Environment :: Console',
],
keywords='pppoe',
url='https://github.com/sde1000/pppoe-serial-bridge',
author='Stephen Early',
author_email='steve@assorted.org.uk',
license='GPL3+',
license_files=['LICENSE'],
packages=['pppoe'],
scripts=['pppoe-serial-bridge.py'],
install_requires=[
'netifaces',
'pyserial',
],
include_package_data=True,
zip_safe=False)