-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
33 lines (27 loc) · 803 Bytes
/
setup.cfg
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
[metadata]
name = eventhive
version = attr: eventhive.__meta__.__version__
author = attr: eventhive.__meta__.__author__
author_email = "[email protected]"
url = https://github.com/operatorequals/eventhive
description = Network PubSub and Async Message Passing for Humans
long_description = file: README.md
long_description_content_type = text/markdown
keywords = pubsub, microservice, iot, rpc
license = MIT
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
[options]
packages = find:
zip_safe = True
include_package_data = True
install_requires = file: requirements.txt
[options.extras_require]
redis = redis >= 4.5.1
dev =
autopep8==2.0.2
docker==6.0.1
[options.entry_points]
console_scripts =
eventhive-cli = eventhive.cli:main