mirror of
https://git.disroot.org/pranav/pybatmesh.git
synced 2024-11-13 00:25:53 +05:30
Pranav Jerry
61a96ea3b3
Made messages printed in Makefile more understandable. Removed full path of naxalnet from the systemd service. Now you can start naxalnet even if it is installed in /usr/local/bin, if systemd allows (I have not tested it). Many comments were made to respect the 80 chars per line rule. And, of course, added some political commentary to insult the global superpower (superpower in terms of money, military and something else I forgot). And removed MANIFEST.in, which probably haven't changed anything.
50 lines
1.5 KiB
INI
50 lines
1.5 KiB
INI
# This program is not meant to be distributed through PyPi
|
|
[metadata]
|
|
name = naxalnet
|
|
version = attr: naxalnet.__version__
|
|
description = create mesh networks with batman-adv and systemd
|
|
long_description = file: README.md
|
|
url = https://git.disroot.org/pranav/naxalnet
|
|
author = Pranav Jerry
|
|
author_email = libreinator@disroot.org
|
|
license = GPLv3
|
|
license_files = LICENSE
|
|
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
|
|
# pathlib, configparser and argparse are already
|
|
# in the standard library
|
|
configparser
|
|
pathlib
|
|
argparse
|
|
systemd
|
|
|
|
[options.entry_points]
|
|
console_scripts =
|
|
naxalnet = naxalnet.scripts:main
|
|
|
|
[options.data_files]
|
|
lib/systemd/system =
|
|
naxalnet.service
|
|
# If installing with pip, this file will be copied to some other place.
|
|
# This is the reason we use setup.py instead of pip in the Makefile.
|
|
/etc/naxalnet =
|
|
naxalnet.conf.example
|
|
share/naxalnet/networkd =
|
|
systemd-networkd/mesh.01-batman.netdev
|
|
systemd-networkd/mesh.02-bridge.netdev
|
|
systemd-networkd/mesh.03-wireless-ad-hoc.network
|
|
systemd-networkd/mesh.04-batman.network
|
|
systemd-networkd/mesh.05-wireless-ap.network
|
|
systemd-networkd/mesh.06-eth.network
|
|
systemd-networkd/mesh.07-bridge.network
|
|
systemd-networkd/tmp.01-eth.network
|