-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
52 lines (43 loc) · 1.46 KB
/
pyproject.toml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages]
find = { } # Scan the project directory with the default parameters
[project]
name = "python_banyan"
version = "3.16"
authors = [
{ name = "Alan Yorinks", email = "MisterYsLab@gmail.com" },
]
description = "The Python Banyan Framework"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "AGPL-3.0-or-later" }
keywords = ['python banyan', 'RPC', 'Remote Procedure Call', 'Event Driven',
'Asynchronous', 'Non-Blocking',
'Raspberry Pi', 'ZeroMQ', 'MessagePack', 'RedBot']
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
]
dependencies = [
'pyzmq',
'msgpack-python',
'numpy>=1.9',
'msgpack-numpy',
'psutil',
'apscheduler',
'websockets==13.1'
]
[project.scripts]
backplane = 'python_banyan.backplane.backplane:bp'
monitor = 'python_banyan.utils.monitor.monitor:monitor'
bls = 'python_banyan.utils.banyan_launcher.bls:bls'
blc = 'python_banyan.utils.banyan_launcher.blc:blc'
blk = 'python_banyan.utils.banyan_launcher.blk:blk'
mgw = 'python_banyan.utils.mqtt_gateway.mqtt_gateway:mqtt_gateway'
tgw = 'python_banyan.utils.tcp_gateway.tcp_gateway:tcp_gateway'