mirror of
https://git.disroot.org/pranav/pybatmesh.git
synced 2024-11-08 13:42:32 +05:30
Pranav Jerry
dfd521f9b9
Tidied up code, added more documentation, and the version now confirms
to some PEP standard. Because of the way configuration and arguments are
implemented, ALL the keys in configuration files should have an argument
that can change its value.
Verbose option was commented out, since it is not implemented. An
argument --print-wifi, which should print out WiFi ssid and password is
not implemented at the moment. Also, the README should be updated to
show the new changes. By the way I just remembered I didn't update the
CHANGELOG; I'll do it in the next commit. 😁
40 lines
1.1 KiB
INI
40 lines
1.1 KiB
INI
[metadata]
|
|
name = naxalnet
|
|
version = attr: naxalnet.__version__
|
|
description = create mesh networks with batman-adv and systemd
|
|
long_description = file: README.md, LICENSE
|
|
url = https://git.disroot.org/pranav/naxalnet
|
|
author = Pranav Jerry
|
|
author_email = libreinator@disroot.org
|
|
license = GPLv3
|
|
classifiers =
|
|
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
Operating System :: POSIX :: Linux
|
|
Programming Language :: Python :: 3 :: Only
|
|
|
|
[options]
|
|
include_package_data = true
|
|
packages = find:
|
|
python_requires = >=3.6
|
|
install_requires =
|
|
dasbus
|
|
configparser
|
|
pathlib
|
|
argparse
|
|
|
|
[options.entry_points]
|
|
console_scripts =
|
|
naxalnet = naxalnet.scripts:here_be_dragons
|
|
|
|
[options.data_files]
|
|
/usr/lib/systemd/system =
|
|
naxalnet.service
|
|
/usr/share/naxalnet/networkd =
|
|
systemd-networkd/01-batman.netdev
|
|
systemd-networkd/02-bridge.netdev
|
|
systemd-networkd/03-wireless-ad-hoc.network
|
|
systemd-networkd/04-batman.network
|
|
systemd-networkd/05-wireless-ap.network
|
|
systemd-networkd/06-eth.network
|
|
systemd-networkd/07-bridge.network
|